-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenvironments.ts
1576 lines (1384 loc) · 40.8 KB
/
environments.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
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.
import { APIResource } from '../../resource';
import * as EnvironmentsAPI from './environments';
import * as Shared from '../shared';
import * as ClassesAPI from './classes';
import { ClassListParams, Classes } from './classes';
import * as ProjectsAPI from '../projects/projects';
import * as RunnersAPI from '../runners/runners';
import * as AutomationsAPI from './automations/automations';
import {
AutomationUpsertParams,
AutomationUpsertResponse,
Automations,
AutomationsFile as AutomationsAPIAutomationsFile,
} from './automations/automations';
import { APIPromise } from '../../api-promise';
import { EnvironmentsPage, type EnvironmentsPageParams, PagePromise } from '../../pagination';
import { RequestOptions } from '../../internal/request-options';
export class Environments extends APIResource {
automations: AutomationsAPI.Automations = new AutomationsAPI.Automations(this._client);
classes: ClassesAPI.Classes = new ClassesAPI.Classes(this._client);
/**
* 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"
* ```
*/
create(body: EnvironmentCreateParams, options?: RequestOptions): APIPromise<EnvironmentCreateResponse> {
return this._client.post('/gitpod.v1.EnvironmentService/CreateEnvironment', { body, ...options });
}
/**
* 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"
* ```
*/
retrieve(
body: EnvironmentRetrieveParams,
options?: RequestOptions,
): APIPromise<EnvironmentRetrieveResponse> {
return this._client.post('/gitpod.v1.EnvironmentService/GetEnvironment', { body, ...options });
}
/**
* 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.
*/
update(body: EnvironmentUpdateParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.EnvironmentService/UpdateEnvironment', { body, ...options });
}
/**
* 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"]
* ```
*/
list(
params: EnvironmentListParams,
options?: RequestOptions,
): PagePromise<EnvironmentsEnvironmentsPage, Environment> {
const { token, pageSize, ...body } = params;
return this._client.getAPIList(
'/gitpod.v1.EnvironmentService/ListEnvironments',
EnvironmentsPage<Environment>,
{ query: { token, pageSize }, body, method: 'post', ...options },
);
}
/**
* 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
* ```
*/
delete(body: EnvironmentDeleteParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.EnvironmentService/DeleteEnvironment', { body, ...options });
}
/**
* 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
* ```
*/
createFromProject(
body: EnvironmentCreateFromProjectParams,
options?: RequestOptions,
): APIPromise<EnvironmentCreateFromProjectResponse> {
return this._client.post('/gitpod.v1.EnvironmentService/CreateEnvironmentFromProject', {
body,
...options,
});
}
/**
* 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"
* ```
*/
createLogsToken(
body: EnvironmentCreateLogsTokenParams,
options?: RequestOptions,
): APIPromise<EnvironmentCreateLogsTokenResponse> {
return this._client.post('/gitpod.v1.EnvironmentService/CreateEnvironmentLogsToken', {
body,
...options,
});
}
/**
* 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"
* ```
*/
markActive(body: EnvironmentMarkActiveParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.EnvironmentService/MarkEnvironmentActive', { body, ...options });
}
/**
* 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"
* ```
*/
start(body: EnvironmentStartParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.EnvironmentService/StartEnvironment', { body, ...options });
}
/**
* 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"
* ```
*/
stop(body: EnvironmentStopParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.EnvironmentService/StopEnvironment', { body, ...options });
}
}
export type EnvironmentsEnvironmentsPage = EnvironmentsPage<Environment>;
/**
* Admission level describes who can access an environment instance and its ports.
*/
export type AdmissionLevel =
| 'ADMISSION_LEVEL_UNSPECIFIED'
| 'ADMISSION_LEVEL_OWNER_ONLY'
| 'ADMISSION_LEVEL_EVERYONE';
/**
* +resource get environment
*/
export interface Environment {
/**
* ID is a unique identifier of this environment. No other environment with the
* same name must be managed by this environment manager
*/
id: string;
/**
* Metadata is data associated with this environment that's required for other
* parts of Gitpod to function
*/
metadata?: EnvironmentMetadata;
/**
* Spec is the configuration of the environment that's required for the runner to
* start the environment
*/
spec?: EnvironmentSpec;
/**
* Status is the current status of the environment
*/
status?: EnvironmentStatus;
}
/**
* EnvironmentActivitySignal used to signal activity for an environment.
*/
export interface EnvironmentActivitySignal {
/**
* 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;
/**
* timestamp of when the activity was observed by the source. Only reported every 5
* minutes. Zero value means no activity was observed.
*/
timestamp?: string;
}
/**
* EnvironmentMetadata is data associated with an environment that's required for
* other parts of the system to function
*/
export interface EnvironmentMetadata {
/**
* annotations are key/value pairs that gets attached to the environment.
* +internal - not yet implemented
*/
annotations?: Record<string, string>;
/**
* Time when the Environment was created.
*/
createdAt?: string;
/**
* creator is the identity of the creator of the environment
*/
creator?: Shared.Subject;
/**
* Time when the Environment was last started (i.e. CreateEnvironment or
* StartEnvironment were called).
*/
lastStartedAt?: string;
/**
* name is the name of the environment as specified by the user
*/
name?: string;
/**
* organization_id is the ID of the organization that contains the environment
*/
organizationId?: string;
/**
* original_context_url is the normalized URL from which the environment was
* created
*/
originalContextUrl?: string;
/**
* If the Environment was started from a project, the project_id will reference the
* project.
*/
projectId?: string;
/**
* Runner is the ID of the runner that runs this environment.
*/
runnerId?: string;
}
export type EnvironmentPhase =
| 'ENVIRONMENT_PHASE_UNSPECIFIED'
| 'ENVIRONMENT_PHASE_CREATING'
| 'ENVIRONMENT_PHASE_STARTING'
| 'ENVIRONMENT_PHASE_RUNNING'
| 'ENVIRONMENT_PHASE_UPDATING'
| 'ENVIRONMENT_PHASE_STOPPING'
| 'ENVIRONMENT_PHASE_STOPPED'
| 'ENVIRONMENT_PHASE_DELETING'
| 'ENVIRONMENT_PHASE_DELETED';
/**
* EnvironmentSpec specifies the configuration of an environment for an environment
* start
*/
export interface EnvironmentSpec {
/**
* admission controlls who can access the environment and its ports.
*/
admission?: AdmissionLevel;
/**
* automations_file is the automations file spec of the environment
*/
automationsFile?: EnvironmentSpec.AutomationsFile;
/**
* content is the content spec of the environment
*/
content?: EnvironmentSpec.Content;
/**
* Phase is the desired phase of the environment
*/
desiredPhase?: EnvironmentPhase;
/**
* devcontainer is the devcontainer spec of the environment
*/
devcontainer?: EnvironmentSpec.Devcontainer;
/**
* machine is the machine spec of the environment
*/
machine?: EnvironmentSpec.Machine;
/**
* ports is the set of ports which ought to be exposed to the internet
*/
ports?: Array<EnvironmentSpec.Port>;
/**
* secrets are confidential data that is mounted into the environment
*/
secrets?: Array<EnvironmentSpec.Secret>;
/**
* 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;
/**
* ssh_public_keys are the public keys used to ssh into the environment
*/
sshPublicKeys?: Array<EnvironmentSpec.SSHPublicKey>;
/**
* Timeout configures the environment timeout
*/
timeout?: EnvironmentSpec.Timeout;
}
export namespace EnvironmentSpec {
/**
* automations_file is the automations file spec of the environment
*/
export interface AutomationsFile {
/**
* 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;
session?: string;
}
/**
* content is the content spec of the environment
*/
export interface Content {
/**
* The Git email address
*/
gitEmail?: string;
/**
* The Git username
*/
gitUsername?: string;
/**
* initializer configures how the environment is to be initialized
*/
initializer?: ProjectsAPI.EnvironmentInitializer;
session?: string;
}
/**
* devcontainer is the devcontainer spec of the environment
*/
export interface Devcontainer {
/**
* 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;
/**
* Experimental: dotfiles is the dotfiles configuration of the devcontainer
*/
dotfiles?: Devcontainer.Dotfiles;
session?: string;
}
export namespace Devcontainer {
/**
* Experimental: dotfiles is the dotfiles configuration of the devcontainer
*/
export interface Dotfiles {
/**
* URL of a dotfiles Git repository (e.g. https://github.com/owner/repository)
*/
repository: string;
}
}
/**
* machine is the machine spec of the environment
*/
export interface Machine {
/**
* Class denotes the class of the environment we ought to start
*/
class?: string;
session?: string;
}
export interface Port {
/**
* policy of this port
*/
admission?: EnvironmentsAPI.AdmissionLevel;
/**
* name of this port
*/
name?: string;
/**
* port number
*/
port?: number;
}
export interface Secret {
/**
* container_registry_basic_auth_host is the hostname of the container registry
* that supports basic auth
*/
containerRegistryBasicAuthHost?: string;
environmentVariable?: string;
/**
* file_path is the path inside the devcontainer where the secret is mounted
*/
filePath?: string;
gitCredentialHost?: string;
/**
* name is the human readable description of the secret
*/
name?: string;
/**
* session indicated the current session of the secret. When the session does not
* change, secrets are not reloaded in the environment.
*/
session?: string;
/**
* source is the source of the secret, for now control-plane or runner
*/
source?: string;
/**
* source_ref into the source, in case of control-plane this is uuid of the secret
*/
sourceRef?: string;
}
export interface SSHPublicKey {
/**
* id is the unique identifier of the public key
*/
id?: string;
/**
* value is the actual public key in the public key file format
*/
value?: string;
}
/**
* Timeout configures the environment timeout
*/
export interface Timeout {
/**
* 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;
}
}
/**
* EnvironmentStatus describes an environment status
*/
export interface EnvironmentStatus {
/**
* activity_signal is the last activity signal for the environment.
*/
activitySignal?: EnvironmentActivitySignal;
/**
* automations_file contains the status of the automations file.
*/
automationsFile?: EnvironmentStatus.AutomationsFile;
/**
* content contains the status of the environment content.
*/
content?: EnvironmentStatus.Content;
/**
* devcontainer contains the status of the devcontainer.
*/
devcontainer?: EnvironmentStatus.Devcontainer;
/**
* environment_url contains the URL at which the environment can be accessed. This
* field is only set if the environment is running.
*/
environmentUrls?: EnvironmentStatus.EnvironmentURLs;
/**
* failure_message summarises why the environment failed to operate. If this is
* non-empty the environment has failed to operate and will likely transition to a
* stopped state.
*/
failureMessage?: Array<string>;
/**
* machine contains the status of the environment machine
*/
machine?: EnvironmentStatus.Machine;
/**
* the phase of an environment is a simple, high-level summary of where the
* environment is in its lifecycle
*/
phase?: EnvironmentPhase;
/**
* runner_ack contains the acknowledgement from the runner that is has received the
* environment spec.
*/
runnerAck?: EnvironmentStatus.RunnerAck;
/**
* secrets contains the status of the environment secrets
*/
secrets?: Array<EnvironmentStatus.Secret>;
/**
* ssh_public_keys contains the status of the environment ssh public keys
*/
sshPublicKeys?: Array<EnvironmentStatus.SSHPublicKey>;
/**
* version of the status update. Environment instances 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;
/**
* warning_message contains warnings, e.g. when the environment is present but not
* in the expected state.
*/
warningMessage?: Array<string>;
}
export namespace EnvironmentStatus {
/**
* automations_file contains the status of the automations file.
*/
export interface AutomationsFile {
/**
* automations_file_path is the path to the automations file relative to the repo
* root.
*/
automationsFilePath?: string;
/**
* automations_file_presence indicates how an automations file is present in the
* environment.
*/
automationsFilePresence?:
| 'PRESENCE_UNSPECIFIED'
| 'PRESENCE_ABSENT'
| 'PRESENCE_DISCOVERED'
| 'PRESENCE_SPECIFIED';
/**
* failure_message contains the reason the automations file failed to be applied.
* This is only set if the phase is FAILED.
*/
failureMessage?: string;
/**
* phase is the current phase of the automations file.
*/
phase?:
| 'CONTENT_PHASE_UNSPECIFIED'
| 'CONTENT_PHASE_CREATING'
| 'CONTENT_PHASE_INITIALIZING'
| 'CONTENT_PHASE_READY'
| 'CONTENT_PHASE_UPDATING'
| 'CONTENT_PHASE_FAILED';
/**
* session is the automations file session that is currently applied in the
* environment.
*/
session?: string;
}
/**
* content contains the status of the environment content.
*/
export interface Content {
/**
* content_location_in_machine is the location of the content in the machine
*/
contentLocationInMachine?: string;
/**
* failure_message contains the reason the content initialization failed.
*/
failureMessage?: string;
/**
* git is the Git working copy status of the environment. Note: this is a
* best-effort field and more often than not will not be present. Its absence does
* not indicate the absence of a working copy.
*/
git?: Content.Git;
/**
* phase is the current phase of the environment content
*/
phase?:
| 'CONTENT_PHASE_UNSPECIFIED'
| 'CONTENT_PHASE_CREATING'
| 'CONTENT_PHASE_INITIALIZING'
| 'CONTENT_PHASE_READY'
| 'CONTENT_PHASE_UPDATING'
| 'CONTENT_PHASE_FAILED';
/**
* session is the session that is currently active in the environment.
*/
session?: string;
/**
* warning_message contains warnings, e.g. when the content is present but not in
* the expected state.
*/
warningMessage?: string;
}
export namespace Content {
/**
* git is the Git working copy status of the environment. Note: this is a
* best-effort field and more often than not will not be present. Its absence does
* not indicate the absence of a working copy.
*/
export interface Git {
/**
* branch is branch we're currently on
*/
branch?: string;
/**
* changed_files is an array of changed files in the environment, possibly
* truncated
*/
changedFiles?: Array<Git.ChangedFile>;
/**
* clone_url is the repository url as you would pass it to "git clone". Only HTTPS
* clone URLs are supported.
*/
cloneUrl?: string;
/**
* latest_commit is the most recent commit on the current branch
*/
latestCommit?: string;
totalChangedFiles?: number;
/**
* the total number of unpushed changes
*/
totalUnpushedCommits?: number;
/**
* unpushed_commits is an array of unpushed changes in the environment, possibly
* truncated
*/
unpushedCommits?: Array<string>;
}
export namespace Git {
export interface ChangedFile {
/**
* ChangeType is the type of change that happened to the file
*/
changeType?:
| 'CHANGE_TYPE_UNSPECIFIED'
| 'CHANGE_TYPE_ADDED'
| 'CHANGE_TYPE_MODIFIED'
| 'CHANGE_TYPE_DELETED'
| 'CHANGE_TYPE_RENAMED'
| 'CHANGE_TYPE_COPIED'
| 'CHANGE_TYPE_UPDATED_BUT_UNMERGED'
| 'CHANGE_TYPE_UNTRACKED';
/**
* path is the path of the file
*/
path?: string;
}
}
}
/**
* devcontainer contains the status of the devcontainer.
*/
export interface Devcontainer {
/**
* container_id is the ID of the container.
*/
containerId?: string;
/**
* container_name is the name of the container that is used to connect to the
* devcontainer
*/
containerName?: string;
/**
* devcontainerconfig_in_sync indicates if the devcontainer is up to date w.r.t.
* the devcontainer config file.
*/
devcontainerconfigInSync?: boolean;
/**
* devcontainer_file_path is the path to the devcontainer file relative to the repo
* root