-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.go
2155 lines (1913 loc) · 81.8 KB
/
environment.go
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
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package gitpod
import (
"context"
"net/http"
"net/url"
"time"
"github.com/gitpod-io/gitpod-sdk-go/internal/apijson"
"github.com/gitpod-io/gitpod-sdk-go/internal/apiquery"
"github.com/gitpod-io/gitpod-sdk-go/internal/param"
"github.com/gitpod-io/gitpod-sdk-go/internal/requestconfig"
"github.com/gitpod-io/gitpod-sdk-go/option"
"github.com/gitpod-io/gitpod-sdk-go/packages/pagination"
"github.com/gitpod-io/gitpod-sdk-go/shared"
)
// EnvironmentService contains methods and other services that help with
// interacting with the gitpod API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewEnvironmentService] method instead.
type EnvironmentService struct {
Options []option.RequestOption
Automations *EnvironmentAutomationService
Classes *EnvironmentClassService
}
// NewEnvironmentService generates a new service that applies the given options to
// each request. These options are applied after the parent client's options (if
// there is one), and before any request-specific options.
func NewEnvironmentService(opts ...option.RequestOption) (r *EnvironmentService) {
r = &EnvironmentService{}
r.Options = opts
r.Automations = NewEnvironmentAutomationService(opts...)
r.Classes = NewEnvironmentClassService(opts...)
return
}
// Creates a development environment from a context URL (e.g. Git repository) and
// starts it.
//
// The `class` field must be a valid environment class ID. You can find a list of
// available environment classes with the `ListEnvironmentClasses` method.
//
// ### Examples
//
// - Create from context URL:
//
// Creates an environment from a Git repository URL with default settings.
//
// ```yaml
// spec:
// machine:
// class: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
// content:
// initializer:
// specs:
// - contextUrl:
// url: "https://github.com/gitpod-io/gitpod"
// ```
//
// - Create from Git repository:
//
// Creates an environment from a Git repository with specific branch targeting.
//
// ```yaml
// spec:
// machine:
// class: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
// content:
// initializer:
// specs:
// - git:
// remoteUri: "https://github.com/gitpod-io/gitpod"
// cloneTarget: "main"
// targetMode: "CLONE_TARGET_MODE_REMOTE_BRANCH"
// ```
//
// - Create with custom timeout and ports:
//
// Creates an environment with custom inactivity timeout and exposed port
// configuration.
//
// ```yaml
// spec:
// machine:
// class: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
// content:
// initializer:
// specs:
// - contextUrl:
// url: "https://github.com/gitpod-io/gitpod"
// timeout:
// disconnected: "7200s" # 2 hours in seconds
// ports:
// - port: 3000
// admission: "ADMISSION_LEVEL_EVERYONE"
// name: "Web App"
// ```
func (r *EnvironmentService) New(ctx context.Context, body EnvironmentNewParams, opts ...option.RequestOption) (res *EnvironmentNewResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/CreateEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Gets details about a specific environment including its status, configuration,
// and context URL.
//
// Use this method to:
//
// - Check if an environment is ready to use
// - Get connection details for IDE and exposed ports
// - Monitor environment health and resource usage
// - Debug environment setup issues
//
// ### Examples
//
// - Get environment details:
//
// Retrieves detailed information about a specific environment using its unique
// identifier.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// ```
func (r *EnvironmentService) Get(ctx context.Context, body EnvironmentGetParams, opts ...option.RequestOption) (res *EnvironmentGetResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/GetEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Updates an environment's configuration while it is running.
//
// Updates are limited to:
//
// - Git credentials (username, email)
// - SSH public keys
// - Content initialization
// - Port configurations
// - Automation files
// - Environment timeouts
//
// ### Examples
//
// - Update Git credentials:
//
// Updates the Git configuration for the environment.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// spec:
// content:
// gitUsername: "example-user"
// gitEmail: "[email protected]"
// ```
//
// - Add SSH public key:
//
// Adds a new SSH public key for authentication.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// spec:
// sshPublicKeys:
// - id: "0194b7c1-c954-718d-91a4-9a742aa5fc11"
// value: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAI..."
// ```
//
// - Update content session:
//
// Updates the content session identifier for the environment.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// spec:
// content:
// session: "0194b7c1-c954-718d-91a4-9a742aa5fc11"
// ```
//
// Note: Machine class changes require stopping the environment and creating a new
// one.
func (r *EnvironmentService) Update(ctx context.Context, body EnvironmentUpdateParams, opts ...option.RequestOption) (res *EnvironmentUpdateResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/UpdateEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Lists all environments matching the specified criteria.
//
// Use this method to find and monitor environments across your organization.
// Results are ordered by creation time with newest environments first.
//
// ### Examples
//
// - List running environments for a project:
//
// Retrieves all running environments for a specific project with pagination.
//
// ```yaml
// filter:
// statusPhases: ["ENVIRONMENT_PHASE_RUNNING"]
// projectIds: ["b0e12f6c-4c67-429d-a4a6-d9838b5da047"]
// pagination:
// pageSize: 10
// ```
//
// - List all environments for a specific runner:
//
// Filters environments by runner ID and creator ID.
//
// ```yaml
// filter:
// runnerIds: ["e6aa9c54-89d3-42c1-ac31-bd8d8f1concentrate"]
// creatorIds: ["f53d2330-3795-4c5d-a1f3-453121af9c60"]
// ```
//
// - List stopped and deleted environments:
//
// Retrieves all environments in stopped or deleted state.
//
// ```yaml
// filter:
// statusPhases: ["ENVIRONMENT_PHASE_STOPPED", "ENVIRONMENT_PHASE_DELETED"]
// ```
func (r *EnvironmentService) List(ctx context.Context, params EnvironmentListParams, opts ...option.RequestOption) (res *pagination.EnvironmentsPage[Environment], err error) {
var raw *http.Response
opts = append(r.Options[:], opts...)
opts = append([]option.RequestOption{option.WithResponseInto(&raw)}, opts...)
path := "gitpod.v1.EnvironmentService/ListEnvironments"
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodPost, path, params, &res, opts...)
if err != nil {
return nil, err
}
err = cfg.Execute()
if err != nil {
return nil, err
}
res.SetPageConfig(cfg, raw)
return res, nil
}
// Lists all environments matching the specified criteria.
//
// Use this method to find and monitor environments across your organization.
// Results are ordered by creation time with newest environments first.
//
// ### Examples
//
// - List running environments for a project:
//
// Retrieves all running environments for a specific project with pagination.
//
// ```yaml
// filter:
// statusPhases: ["ENVIRONMENT_PHASE_RUNNING"]
// projectIds: ["b0e12f6c-4c67-429d-a4a6-d9838b5da047"]
// pagination:
// pageSize: 10
// ```
//
// - List all environments for a specific runner:
//
// Filters environments by runner ID and creator ID.
//
// ```yaml
// filter:
// runnerIds: ["e6aa9c54-89d3-42c1-ac31-bd8d8f1concentrate"]
// creatorIds: ["f53d2330-3795-4c5d-a1f3-453121af9c60"]
// ```
//
// - List stopped and deleted environments:
//
// Retrieves all environments in stopped or deleted state.
//
// ```yaml
// filter:
// statusPhases: ["ENVIRONMENT_PHASE_STOPPED", "ENVIRONMENT_PHASE_DELETED"]
// ```
func (r *EnvironmentService) ListAutoPaging(ctx context.Context, params EnvironmentListParams, opts ...option.RequestOption) *pagination.EnvironmentsPageAutoPager[Environment] {
return pagination.NewEnvironmentsPageAutoPager(r.List(ctx, params, opts...))
}
// Permanently deletes an environment.
//
// Running environments are automatically stopped before deletion. If force is
// true, the environment is deleted immediately without graceful shutdown.
//
// ### Examples
//
// - Delete with graceful shutdown:
//
// Deletes an environment after gracefully stopping it.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// force: false
// ```
//
// - Force delete:
//
// Immediately deletes an environment without waiting for graceful shutdown.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// force: true
// ```
func (r *EnvironmentService) Delete(ctx context.Context, body EnvironmentDeleteParams, opts ...option.RequestOption) (res *EnvironmentDeleteResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/DeleteEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Creates an environment from an existing project configuration and starts it.
//
// This method uses project settings as defaults but allows overriding specific
// configurations. Project settings take precedence over default configurations,
// while custom specifications in the request override project settings.
//
// ### Examples
//
// - Create with project defaults:
//
// Creates an environment using all default settings from the project
// configuration.
//
// ```yaml
// projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
// ```
//
// - Create with custom compute resources:
//
// Creates an environment from project with custom machine class and timeout
// settings.
//
// ```yaml
// projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
// spec:
// machine:
// class: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
// timeout:
// disconnected: "14400s" # 4 hours in seconds
// ```
func (r *EnvironmentService) NewFromProject(ctx context.Context, body EnvironmentNewFromProjectParams, opts ...option.RequestOption) (res *EnvironmentNewFromProjectResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/CreateEnvironmentFromProject"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Creates an access token for retrieving environment logs.
//
// Generated tokens are valid for one hour and provide read-only access to the
// environment's logs.
//
// ### Examples
//
// - Generate logs token:
//
// Creates a temporary access token for retrieving environment logs.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// ```
func (r *EnvironmentService) NewLogsToken(ctx context.Context, body EnvironmentNewLogsTokenParams, opts ...option.RequestOption) (res *EnvironmentNewLogsTokenResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/CreateEnvironmentLogsToken"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Records environment activity to prevent automatic shutdown.
//
// Activity signals should be sent every 5 minutes while the environment is
// actively being used. The source must be between 3-80 characters.
//
// ### Examples
//
// - Signal VS Code activity:
//
// Records VS Code editor activity to prevent environment shutdown.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// activitySignal:
// source: "VS Code"
// timestamp: "2025-02-12T14:30:00Z"
// ```
func (r *EnvironmentService) MarkActive(ctx context.Context, body EnvironmentMarkActiveParams, opts ...option.RequestOption) (res *EnvironmentMarkActiveResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/MarkEnvironmentActive"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Starts a stopped environment.
//
// Use this method to resume work on a previously stopped environment. The
// environment retains its configuration and workspace content from when it was
// stopped.
//
// ### Examples
//
// - Start an environment:
//
// Resumes a previously stopped environment with its existing configuration.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// ```
func (r *EnvironmentService) Start(ctx context.Context, body EnvironmentStartParams, opts ...option.RequestOption) (res *EnvironmentStartResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/StartEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Stops a running environment.
//
// Use this method to pause work while preserving the environment's state. The
// environment can be resumed later using StartEnvironment.
//
// ### Examples
//
// - Stop an environment:
//
// Gracefully stops a running environment while preserving its state.
//
// ```yaml
// environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
// ```
func (r *EnvironmentService) Stop(ctx context.Context, body EnvironmentStopParams, opts ...option.RequestOption) (res *EnvironmentStopResponse, err error) {
opts = append(r.Options[:], opts...)
path := "gitpod.v1.EnvironmentService/StopEnvironment"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Admission level describes who can access an environment instance and its ports.
type AdmissionLevel string
const (
AdmissionLevelUnspecified AdmissionLevel = "ADMISSION_LEVEL_UNSPECIFIED"
AdmissionLevelOwnerOnly AdmissionLevel = "ADMISSION_LEVEL_OWNER_ONLY"
AdmissionLevelEveryone AdmissionLevel = "ADMISSION_LEVEL_EVERYONE"
)
func (r AdmissionLevel) IsKnown() bool {
switch r {
case AdmissionLevelUnspecified, AdmissionLevelOwnerOnly, AdmissionLevelEveryone:
return true
}
return false
}
// +resource get environment
type Environment struct {
// ID is a unique identifier of this environment. No other environment with the
// same name must be managed by this environment manager
ID string `json:"id,required"`
// Metadata is data associated with this environment that's required for other
// parts of Gitpod to function
Metadata EnvironmentMetadata `json:"metadata"`
// Spec is the configuration of the environment that's required for the runner to
// start the environment
Spec EnvironmentSpec `json:"spec"`
// Status is the current status of the environment
Status EnvironmentStatus `json:"status"`
JSON environmentJSON `json:"-"`
}
// environmentJSON contains the JSON metadata for the struct [Environment]
type environmentJSON struct {
ID apijson.Field
Metadata apijson.Field
Spec apijson.Field
Status apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *Environment) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentJSON) RawJSON() string {
return r.raw
}
// EnvironmentActivitySignal used to signal activity for an environment.
type EnvironmentActivitySignal struct {
// source of the activity signal, such as "VS Code", "SSH", or "Automations". It
// should be a human-readable string that describes the source of the activity
// signal.
Source string `json:"source"`
// timestamp of when the activity was observed by the source. Only reported every 5
// minutes. Zero value means no activity was observed.
Timestamp time.Time `json:"timestamp" format:"date-time"`
JSON environmentActivitySignalJSON `json:"-"`
}
// environmentActivitySignalJSON contains the JSON metadata for the struct
// [EnvironmentActivitySignal]
type environmentActivitySignalJSON struct {
Source apijson.Field
Timestamp apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentActivitySignal) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentActivitySignalJSON) RawJSON() string {
return r.raw
}
// EnvironmentActivitySignal used to signal activity for an environment.
type EnvironmentActivitySignalParam struct {
// source of the activity signal, such as "VS Code", "SSH", or "Automations". It
// should be a human-readable string that describes the source of the activity
// signal.
Source param.Field[string] `json:"source"`
// timestamp of when the activity was observed by the source. Only reported every 5
// minutes. Zero value means no activity was observed.
Timestamp param.Field[time.Time] `json:"timestamp" format:"date-time"`
}
func (r EnvironmentActivitySignalParam) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
// EnvironmentMetadata is data associated with an environment that's required for
// other parts of the system to function
type EnvironmentMetadata struct {
// annotations are key/value pairs that gets attached to the environment.
// +internal - not yet implemented
Annotations map[string]string `json:"annotations"`
// Time when the Environment was created.
CreatedAt time.Time `json:"createdAt" format:"date-time"`
// creator is the identity of the creator of the environment
Creator shared.Subject `json:"creator"`
// Time when the Environment was last started (i.e. CreateEnvironment or
// StartEnvironment were called).
LastStartedAt time.Time `json:"lastStartedAt" format:"date-time"`
// name is the name of the environment as specified by the user
Name string `json:"name"`
// organization_id is the ID of the organization that contains the environment
OrganizationID string `json:"organizationId" format:"uuid"`
// original_context_url is the normalized URL from which the environment was
// created
OriginalContextURL string `json:"originalContextUrl"`
// If the Environment was started from a project, the project_id will reference the
// project.
ProjectID string `json:"projectId"`
// Runner is the ID of the runner that runs this environment.
RunnerID string `json:"runnerId"`
JSON environmentMetadataJSON `json:"-"`
}
// environmentMetadataJSON contains the JSON metadata for the struct
// [EnvironmentMetadata]
type environmentMetadataJSON struct {
Annotations apijson.Field
CreatedAt apijson.Field
Creator apijson.Field
LastStartedAt apijson.Field
Name apijson.Field
OrganizationID apijson.Field
OriginalContextURL apijson.Field
ProjectID apijson.Field
RunnerID apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentMetadata) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentMetadataJSON) RawJSON() string {
return r.raw
}
type EnvironmentPhase string
const (
EnvironmentPhaseUnspecified EnvironmentPhase = "ENVIRONMENT_PHASE_UNSPECIFIED"
EnvironmentPhaseCreating EnvironmentPhase = "ENVIRONMENT_PHASE_CREATING"
EnvironmentPhaseStarting EnvironmentPhase = "ENVIRONMENT_PHASE_STARTING"
EnvironmentPhaseRunning EnvironmentPhase = "ENVIRONMENT_PHASE_RUNNING"
EnvironmentPhaseUpdating EnvironmentPhase = "ENVIRONMENT_PHASE_UPDATING"
EnvironmentPhaseStopping EnvironmentPhase = "ENVIRONMENT_PHASE_STOPPING"
EnvironmentPhaseStopped EnvironmentPhase = "ENVIRONMENT_PHASE_STOPPED"
EnvironmentPhaseDeleting EnvironmentPhase = "ENVIRONMENT_PHASE_DELETING"
EnvironmentPhaseDeleted EnvironmentPhase = "ENVIRONMENT_PHASE_DELETED"
)
func (r EnvironmentPhase) IsKnown() bool {
switch r {
case EnvironmentPhaseUnspecified, EnvironmentPhaseCreating, EnvironmentPhaseStarting, EnvironmentPhaseRunning, EnvironmentPhaseUpdating, EnvironmentPhaseStopping, EnvironmentPhaseStopped, EnvironmentPhaseDeleting, EnvironmentPhaseDeleted:
return true
}
return false
}
// EnvironmentSpec specifies the configuration of an environment for an environment
// start
type EnvironmentSpec struct {
// admission controlls who can access the environment and its ports.
Admission AdmissionLevel `json:"admission"`
// automations_file is the automations file spec of the environment
AutomationsFile EnvironmentSpecAutomationsFile `json:"automationsFile"`
// content is the content spec of the environment
Content EnvironmentSpecContent `json:"content"`
// Phase is the desired phase of the environment
DesiredPhase EnvironmentPhase `json:"desiredPhase"`
// devcontainer is the devcontainer spec of the environment
Devcontainer EnvironmentSpecDevcontainer `json:"devcontainer"`
// machine is the machine spec of the environment
Machine EnvironmentSpecMachine `json:"machine"`
// ports is the set of ports which ought to be exposed to the internet
Ports []EnvironmentSpecPort `json:"ports"`
// secrets are confidential data that is mounted into the environment
Secrets []EnvironmentSpecSecret `json:"secrets"`
// version of the spec. 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.spec_version < b.spec_version then a was the spec before b.
SpecVersion string `json:"specVersion"`
// ssh_public_keys are the public keys used to ssh into the environment
SSHPublicKeys []EnvironmentSpecSSHPublicKey `json:"sshPublicKeys"`
// Timeout configures the environment timeout
Timeout EnvironmentSpecTimeout `json:"timeout"`
JSON environmentSpecJSON `json:"-"`
}
// environmentSpecJSON contains the JSON metadata for the struct [EnvironmentSpec]
type environmentSpecJSON struct {
Admission apijson.Field
AutomationsFile apijson.Field
Content apijson.Field
DesiredPhase apijson.Field
Devcontainer apijson.Field
Machine apijson.Field
Ports apijson.Field
Secrets apijson.Field
SpecVersion apijson.Field
SSHPublicKeys apijson.Field
Timeout apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpec) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecJSON) RawJSON() string {
return r.raw
}
// automations_file is the automations file spec of the environment
type EnvironmentSpecAutomationsFile struct {
// automations_file_path is the path to the automations file that is applied in the
// environment, relative to the repo root. path must not be absolute (start with a
// /):
//
// ```
// this.matches('^$|^[^/].*')
// ```
AutomationsFilePath string `json:"automationsFilePath"`
Session string `json:"session"`
JSON environmentSpecAutomationsFileJSON `json:"-"`
}
// environmentSpecAutomationsFileJSON contains the JSON metadata for the struct
// [EnvironmentSpecAutomationsFile]
type environmentSpecAutomationsFileJSON struct {
AutomationsFilePath apijson.Field
Session apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecAutomationsFile) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecAutomationsFileJSON) RawJSON() string {
return r.raw
}
// content is the content spec of the environment
type EnvironmentSpecContent struct {
// The Git email address
GitEmail string `json:"gitEmail"`
// The Git username
GitUsername string `json:"gitUsername"`
// initializer configures how the environment is to be initialized
Initializer EnvironmentInitializer `json:"initializer"`
Session string `json:"session"`
JSON environmentSpecContentJSON `json:"-"`
}
// environmentSpecContentJSON contains the JSON metadata for the struct
// [EnvironmentSpecContent]
type environmentSpecContentJSON struct {
GitEmail apijson.Field
GitUsername apijson.Field
Initializer apijson.Field
Session apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecContent) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecContentJSON) RawJSON() string {
return r.raw
}
// devcontainer is the devcontainer spec of the environment
type EnvironmentSpecDevcontainer struct {
// devcontainer_file_path is the path to the devcontainer file relative to the repo
// root path must not be absolute (start with a /):
//
// ```
// this.matches('^$|^[^/].*')
// ```
DevcontainerFilePath string `json:"devcontainerFilePath"`
// Experimental: dotfiles is the dotfiles configuration of the devcontainer
Dotfiles EnvironmentSpecDevcontainerDotfiles `json:"dotfiles"`
Session string `json:"session"`
JSON environmentSpecDevcontainerJSON `json:"-"`
}
// environmentSpecDevcontainerJSON contains the JSON metadata for the struct
// [EnvironmentSpecDevcontainer]
type environmentSpecDevcontainerJSON struct {
DevcontainerFilePath apijson.Field
Dotfiles apijson.Field
Session apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecDevcontainer) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecDevcontainerJSON) RawJSON() string {
return r.raw
}
// Experimental: dotfiles is the dotfiles configuration of the devcontainer
type EnvironmentSpecDevcontainerDotfiles struct {
// URL of a dotfiles Git repository (e.g. https://github.com/owner/repository)
Repository string `json:"repository,required" format:"uri"`
JSON environmentSpecDevcontainerDotfilesJSON `json:"-"`
}
// environmentSpecDevcontainerDotfilesJSON contains the JSON metadata for the
// struct [EnvironmentSpecDevcontainerDotfiles]
type environmentSpecDevcontainerDotfilesJSON struct {
Repository apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecDevcontainerDotfiles) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecDevcontainerDotfilesJSON) RawJSON() string {
return r.raw
}
// machine is the machine spec of the environment
type EnvironmentSpecMachine struct {
// Class denotes the class of the environment we ought to start
Class string `json:"class"`
Session string `json:"session"`
JSON environmentSpecMachineJSON `json:"-"`
}
// environmentSpecMachineJSON contains the JSON metadata for the struct
// [EnvironmentSpecMachine]
type environmentSpecMachineJSON struct {
Class apijson.Field
Session apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecMachine) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecMachineJSON) RawJSON() string {
return r.raw
}
type EnvironmentSpecPort struct {
// policy of this port
Admission AdmissionLevel `json:"admission"`
// name of this port
Name string `json:"name"`
// port number
Port int64 `json:"port"`
JSON environmentSpecPortJSON `json:"-"`
}
// environmentSpecPortJSON contains the JSON metadata for the struct
// [EnvironmentSpecPort]
type environmentSpecPortJSON struct {
Admission apijson.Field
Name apijson.Field
Port apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecPort) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecPortJSON) RawJSON() string {
return r.raw
}
type EnvironmentSpecSecret struct {
// container_registry_basic_auth_host is the hostname of the container registry
// that supports basic auth
ContainerRegistryBasicAuthHost string `json:"containerRegistryBasicAuthHost"`
EnvironmentVariable string `json:"environmentVariable"`
// file_path is the path inside the devcontainer where the secret is mounted
FilePath string `json:"filePath"`
GitCredentialHost string `json:"gitCredentialHost"`
// name is the human readable description of the secret
Name string `json:"name"`
// session indicated the current session of the secret. When the session does not
// change, secrets are not reloaded in the environment.
Session string `json:"session"`
// source is the source of the secret, for now control-plane or runner
Source string `json:"source"`
// source_ref into the source, in case of control-plane this is uuid of the secret
SourceRef string `json:"sourceRef"`
JSON environmentSpecSecretJSON `json:"-"`
}
// environmentSpecSecretJSON contains the JSON metadata for the struct
// [EnvironmentSpecSecret]
type environmentSpecSecretJSON struct {
ContainerRegistryBasicAuthHost apijson.Field
EnvironmentVariable apijson.Field
FilePath apijson.Field
GitCredentialHost apijson.Field
Name apijson.Field
Session apijson.Field
Source apijson.Field
SourceRef apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecSecret) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecSecretJSON) RawJSON() string {
return r.raw
}
type EnvironmentSpecSSHPublicKey struct {
// id is the unique identifier of the public key
ID string `json:"id"`
// value is the actual public key in the public key file format
Value string `json:"value"`
JSON environmentSpecSSHPublicKeyJSON `json:"-"`
}
// environmentSpecSSHPublicKeyJSON contains the JSON metadata for the struct
// [EnvironmentSpecSSHPublicKey]
type environmentSpecSSHPublicKeyJSON struct {
ID apijson.Field
Value apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecSSHPublicKey) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecSSHPublicKeyJSON) RawJSON() string {
return r.raw
}
// Timeout configures the environment timeout
type EnvironmentSpecTimeout struct {
// inacitivity is the maximum time of disconnection before the environment is
// stopped or paused. Minimum duration is 30 minutes. Set to 0 to disable.
Disconnected string `json:"disconnected" format:"regex"`
JSON environmentSpecTimeoutJSON `json:"-"`
}
// environmentSpecTimeoutJSON contains the JSON metadata for the struct
// [EnvironmentSpecTimeout]
type environmentSpecTimeoutJSON struct {
Disconnected apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *EnvironmentSpecTimeout) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r environmentSpecTimeoutJSON) RawJSON() string {
return r.raw
}
// EnvironmentSpec specifies the configuration of an environment for an environment
// start
type EnvironmentSpecParam struct {
// admission controlls who can access the environment and its ports.
Admission param.Field[AdmissionLevel] `json:"admission"`
// automations_file is the automations file spec of the environment
AutomationsFile param.Field[EnvironmentSpecAutomationsFileParam] `json:"automationsFile"`
// content is the content spec of the environment
Content param.Field[EnvironmentSpecContentParam] `json:"content"`
// Phase is the desired phase of the environment
DesiredPhase param.Field[EnvironmentPhase] `json:"desiredPhase"`
// devcontainer is the devcontainer spec of the environment
Devcontainer param.Field[EnvironmentSpecDevcontainerParam] `json:"devcontainer"`
// machine is the machine spec of the environment
Machine param.Field[EnvironmentSpecMachineParam] `json:"machine"`
// ports is the set of ports which ought to be exposed to the internet
Ports param.Field[[]EnvironmentSpecPortParam] `json:"ports"`
// secrets are confidential data that is mounted into the environment
Secrets param.Field[[]EnvironmentSpecSecretParam] `json:"secrets"`
// version of the spec. 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.spec_version < b.spec_version then a was the spec before b.
SpecVersion param.Field[string] `json:"specVersion"`
// ssh_public_keys are the public keys used to ssh into the environment
SSHPublicKeys param.Field[[]EnvironmentSpecSSHPublicKeyParam] `json:"sshPublicKeys"`
// Timeout configures the environment timeout
Timeout param.Field[EnvironmentSpecTimeoutParam] `json:"timeout"`
}
func (r EnvironmentSpecParam) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
// automations_file is the automations file spec of the environment
type EnvironmentSpecAutomationsFileParam struct {
// automations_file_path is the path to the automations file that is applied in the
// environment, relative to the repo root. path must not be absolute (start with a
// /):
//
// ```
// this.matches('^$|^[^/].*')
// ```
AutomationsFilePath param.Field[string] `json:"automationsFilePath"`
Session param.Field[string] `json:"session"`
}
func (r EnvironmentSpecAutomationsFileParam) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
// content is the content spec of the environment
type EnvironmentSpecContentParam struct {
// The Git email address
GitEmail param.Field[string] `json:"gitEmail"`
// The Git username
GitUsername param.Field[string] `json:"gitUsername"`
// initializer configures how the environment is to be initialized
Initializer param.Field[EnvironmentInitializerParam] `json:"initializer"`
Session param.Field[string] `json:"session"`
}
func (r EnvironmentSpecContentParam) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
// devcontainer is the devcontainer spec of the environment
type EnvironmentSpecDevcontainerParam struct {
// devcontainer_file_path is the path to the devcontainer file relative to the repo