-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_client.py
More file actions
1080 lines (817 loc) · 39.6 KB
/
_client.py
File metadata and controls
1080 lines (817 loc) · 39.6 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
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.
from __future__ import annotations
import os
from typing import TYPE_CHECKING, Any, Mapping
from typing_extensions import Self, override
import httpx
from . import _exceptions
from ._qs import Querystring
from ._types import (
Omit,
Timeout,
NotGiven,
Transport,
ProxiesTypes,
RequestOptions,
not_given,
)
from ._utils import is_given, get_async_library
from ._compat import cached_property
from ._version import __version__
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
from ._exceptions import GitpodError, APIStatusError
from ._base_client import (
DEFAULT_MAX_RETRIES,
SyncAPIClient,
AsyncAPIClient,
)
if TYPE_CHECKING:
from .resources import (
usage,
users,
agents,
errors,
events,
groups,
editors,
runners,
secrets,
accounts,
gateways,
identity,
projects,
prebuilds,
environments,
organizations,
)
from .resources.usage import UsageResource, AsyncUsageResource
from .resources.agents import AgentsResource, AsyncAgentsResource
from .resources.errors import ErrorsResource, AsyncErrorsResource
from .resources.events import EventsResource, AsyncEventsResource
from .resources.editors import EditorsResource, AsyncEditorsResource
from .resources.secrets import SecretsResource, AsyncSecretsResource
from .resources.accounts import AccountsResource, AsyncAccountsResource
from .resources.gateways import GatewaysResource, AsyncGatewaysResource
from .resources.identity import IdentityResource, AsyncIdentityResource
from .resources.prebuilds import PrebuildsResource, AsyncPrebuildsResource
from .resources.users.users import UsersResource, AsyncUsersResource
from .resources.groups.groups import GroupsResource, AsyncGroupsResource
from .resources.runners.runners import RunnersResource, AsyncRunnersResource
from .resources.projects.projects import ProjectsResource, AsyncProjectsResource
from .resources.environments.environments import EnvironmentsResource, AsyncEnvironmentsResource
from .resources.organizations.organizations import OrganizationsResource, AsyncOrganizationsResource
__all__ = ["Timeout", "Transport", "ProxiesTypes", "RequestOptions", "Gitpod", "AsyncGitpod", "Client", "AsyncClient"]
class Gitpod(SyncAPIClient):
# client options
bearer_token: str
def __init__(
self,
*,
bearer_token: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
max_retries: int = DEFAULT_MAX_RETRIES,
default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
# Configure a custom httpx client.
# We provide a `DefaultHttpxClient` class that you can pass to retain the default values we use for `limits`, `timeout` & `follow_redirects`.
# See the [httpx documentation](https://www.python-httpx.org/api/#client) for more details.
http_client: httpx.Client | None = None,
# Enable or disable schema validation for data returned by the API.
# When enabled an error APIResponseValidationError is raised
# if the API responds with invalid data for the expected schema.
#
# This parameter may be removed or changed in the future.
# If you rely on this feature, please open a GitHub issue
# outlining your use-case to help us decide if it should be
# part of our public interface in the future.
_strict_response_validation: bool = False,
) -> None:
"""Construct a new synchronous Gitpod client instance.
This automatically infers the `bearer_token` argument from the `GITPOD_API_KEY` environment variable if it is not provided.
"""
if bearer_token is None:
bearer_token = os.environ.get("GITPOD_API_KEY")
if bearer_token is None:
raise GitpodError(
"The bearer_token client option must be set either by passing bearer_token to the client or by setting the GITPOD_API_KEY environment variable"
)
self.bearer_token = bearer_token
if base_url is None:
base_url = os.environ.get("GITPOD_BASE_URL")
if base_url is None:
base_url = f"https://app.gitpod.io/api"
super().__init__(
version=__version__,
base_url=base_url,
max_retries=max_retries,
timeout=timeout,
http_client=http_client,
custom_headers=default_headers,
custom_query=default_query,
_strict_response_validation=_strict_response_validation,
)
@cached_property
def accounts(self) -> AccountsResource:
from .resources.accounts import AccountsResource
return AccountsResource(self)
@cached_property
def agents(self) -> AgentsResource:
from .resources.agents import AgentsResource
return AgentsResource(self)
@cached_property
def editors(self) -> EditorsResource:
from .resources.editors import EditorsResource
return EditorsResource(self)
@cached_property
def environments(self) -> EnvironmentsResource:
from .resources.environments import EnvironmentsResource
return EnvironmentsResource(self)
@cached_property
def errors(self) -> ErrorsResource:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import ErrorsResource
return ErrorsResource(self)
@cached_property
def events(self) -> EventsResource:
from .resources.events import EventsResource
return EventsResource(self)
@cached_property
def gateways(self) -> GatewaysResource:
from .resources.gateways import GatewaysResource
return GatewaysResource(self)
@cached_property
def groups(self) -> GroupsResource:
from .resources.groups import GroupsResource
return GroupsResource(self)
@cached_property
def identity(self) -> IdentityResource:
from .resources.identity import IdentityResource
return IdentityResource(self)
@cached_property
def organizations(self) -> OrganizationsResource:
from .resources.organizations import OrganizationsResource
return OrganizationsResource(self)
@cached_property
def prebuilds(self) -> PrebuildsResource:
"""
PrebuildService manages prebuilds for projects to enable faster environment startup times.
Prebuilds create snapshots of environments that can be used to provision new environments quickly.
"""
from .resources.prebuilds import PrebuildsResource
return PrebuildsResource(self)
@cached_property
def projects(self) -> ProjectsResource:
from .resources.projects import ProjectsResource
return ProjectsResource(self)
@cached_property
def runners(self) -> RunnersResource:
from .resources.runners import RunnersResource
return RunnersResource(self)
@cached_property
def secrets(self) -> SecretsResource:
from .resources.secrets import SecretsResource
return SecretsResource(self)
@cached_property
def usage(self) -> UsageResource:
"""
UsageService provides usage information about environments, users, and projects.
"""
from .resources.usage import UsageResource
return UsageResource(self)
@cached_property
def users(self) -> UsersResource:
from .resources.users import UsersResource
return UsersResource(self)
@cached_property
def with_raw_response(self) -> GitpodWithRawResponse:
return GitpodWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> GitpodWithStreamedResponse:
return GitpodWithStreamedResponse(self)
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
@property
@override
def auth_headers(self) -> dict[str, str]:
bearer_token = self.bearer_token
return {"Authorization": f"Bearer {bearer_token}"}
@property
@override
def default_headers(self) -> dict[str, str | Omit]:
return {
**super().default_headers,
"X-Stainless-Async": "false",
**self._custom_headers,
}
def copy(
self,
*,
bearer_token: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
http_client: httpx.Client | None = None,
max_retries: int | NotGiven = not_given,
default_headers: Mapping[str, str] | None = None,
set_default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
set_default_query: Mapping[str, object] | None = None,
_extra_kwargs: Mapping[str, Any] = {},
) -> Self:
"""
Create a new client instance re-using the same options given to the current client with optional overriding.
"""
if default_headers is not None and set_default_headers is not None:
raise ValueError("The `default_headers` and `set_default_headers` arguments are mutually exclusive")
if default_query is not None and set_default_query is not None:
raise ValueError("The `default_query` and `set_default_query` arguments are mutually exclusive")
headers = self._custom_headers
if default_headers is not None:
headers = {**headers, **default_headers}
elif set_default_headers is not None:
headers = set_default_headers
params = self._custom_query
if default_query is not None:
params = {**params, **default_query}
elif set_default_query is not None:
params = set_default_query
http_client = http_client or self._client
return self.__class__(
bearer_token=bearer_token or self.bearer_token,
base_url=base_url or self.base_url,
timeout=self.timeout if isinstance(timeout, NotGiven) else timeout,
http_client=http_client,
max_retries=max_retries if is_given(max_retries) else self.max_retries,
default_headers=headers,
default_query=params,
**_extra_kwargs,
)
# Alias for `copy` for nicer inline usage, e.g.
# client.with_options(timeout=10).foo.create(...)
with_options = copy
@override
def _make_status_error(
self,
err_msg: str,
*,
body: object,
response: httpx.Response,
) -> APIStatusError:
if response.status_code == 400:
return _exceptions.BadRequestError(err_msg, response=response, body=body)
if response.status_code == 401:
return _exceptions.AuthenticationError(err_msg, response=response, body=body)
if response.status_code == 403:
return _exceptions.PermissionDeniedError(err_msg, response=response, body=body)
if response.status_code == 404:
return _exceptions.NotFoundError(err_msg, response=response, body=body)
if response.status_code == 409:
return _exceptions.ConflictError(err_msg, response=response, body=body)
if response.status_code == 422:
return _exceptions.UnprocessableEntityError(err_msg, response=response, body=body)
if response.status_code == 429:
return _exceptions.RateLimitError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.InternalServerError(err_msg, response=response, body=body)
return APIStatusError(err_msg, response=response, body=body)
class AsyncGitpod(AsyncAPIClient):
# client options
bearer_token: str
def __init__(
self,
*,
bearer_token: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
max_retries: int = DEFAULT_MAX_RETRIES,
default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
# Configure a custom httpx client.
# We provide a `DefaultAsyncHttpxClient` class that you can pass to retain the default values we use for `limits`, `timeout` & `follow_redirects`.
# See the [httpx documentation](https://www.python-httpx.org/api/#asyncclient) for more details.
http_client: httpx.AsyncClient | None = None,
# Enable or disable schema validation for data returned by the API.
# When enabled an error APIResponseValidationError is raised
# if the API responds with invalid data for the expected schema.
#
# This parameter may be removed or changed in the future.
# If you rely on this feature, please open a GitHub issue
# outlining your use-case to help us decide if it should be
# part of our public interface in the future.
_strict_response_validation: bool = False,
) -> None:
"""Construct a new async AsyncGitpod client instance.
This automatically infers the `bearer_token` argument from the `GITPOD_API_KEY` environment variable if it is not provided.
"""
if bearer_token is None:
bearer_token = os.environ.get("GITPOD_API_KEY")
if bearer_token is None:
raise GitpodError(
"The bearer_token client option must be set either by passing bearer_token to the client or by setting the GITPOD_API_KEY environment variable"
)
self.bearer_token = bearer_token
if base_url is None:
base_url = os.environ.get("GITPOD_BASE_URL")
if base_url is None:
base_url = f"https://app.gitpod.io/api"
super().__init__(
version=__version__,
base_url=base_url,
max_retries=max_retries,
timeout=timeout,
http_client=http_client,
custom_headers=default_headers,
custom_query=default_query,
_strict_response_validation=_strict_response_validation,
)
@cached_property
def accounts(self) -> AsyncAccountsResource:
from .resources.accounts import AsyncAccountsResource
return AsyncAccountsResource(self)
@cached_property
def agents(self) -> AsyncAgentsResource:
from .resources.agents import AsyncAgentsResource
return AsyncAgentsResource(self)
@cached_property
def editors(self) -> AsyncEditorsResource:
from .resources.editors import AsyncEditorsResource
return AsyncEditorsResource(self)
@cached_property
def environments(self) -> AsyncEnvironmentsResource:
from .resources.environments import AsyncEnvironmentsResource
return AsyncEnvironmentsResource(self)
@cached_property
def errors(self) -> AsyncErrorsResource:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import AsyncErrorsResource
return AsyncErrorsResource(self)
@cached_property
def events(self) -> AsyncEventsResource:
from .resources.events import AsyncEventsResource
return AsyncEventsResource(self)
@cached_property
def gateways(self) -> AsyncGatewaysResource:
from .resources.gateways import AsyncGatewaysResource
return AsyncGatewaysResource(self)
@cached_property
def groups(self) -> AsyncGroupsResource:
from .resources.groups import AsyncGroupsResource
return AsyncGroupsResource(self)
@cached_property
def identity(self) -> AsyncIdentityResource:
from .resources.identity import AsyncIdentityResource
return AsyncIdentityResource(self)
@cached_property
def organizations(self) -> AsyncOrganizationsResource:
from .resources.organizations import AsyncOrganizationsResource
return AsyncOrganizationsResource(self)
@cached_property
def prebuilds(self) -> AsyncPrebuildsResource:
"""
PrebuildService manages prebuilds for projects to enable faster environment startup times.
Prebuilds create snapshots of environments that can be used to provision new environments quickly.
"""
from .resources.prebuilds import AsyncPrebuildsResource
return AsyncPrebuildsResource(self)
@cached_property
def projects(self) -> AsyncProjectsResource:
from .resources.projects import AsyncProjectsResource
return AsyncProjectsResource(self)
@cached_property
def runners(self) -> AsyncRunnersResource:
from .resources.runners import AsyncRunnersResource
return AsyncRunnersResource(self)
@cached_property
def secrets(self) -> AsyncSecretsResource:
from .resources.secrets import AsyncSecretsResource
return AsyncSecretsResource(self)
@cached_property
def usage(self) -> AsyncUsageResource:
"""
UsageService provides usage information about environments, users, and projects.
"""
from .resources.usage import AsyncUsageResource
return AsyncUsageResource(self)
@cached_property
def users(self) -> AsyncUsersResource:
from .resources.users import AsyncUsersResource
return AsyncUsersResource(self)
@cached_property
def with_raw_response(self) -> AsyncGitpodWithRawResponse:
return AsyncGitpodWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncGitpodWithStreamedResponse:
return AsyncGitpodWithStreamedResponse(self)
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
@property
@override
def auth_headers(self) -> dict[str, str]:
bearer_token = self.bearer_token
return {"Authorization": f"Bearer {bearer_token}"}
@property
@override
def default_headers(self) -> dict[str, str | Omit]:
return {
**super().default_headers,
"X-Stainless-Async": f"async:{get_async_library()}",
**self._custom_headers,
}
def copy(
self,
*,
bearer_token: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
http_client: httpx.AsyncClient | None = None,
max_retries: int | NotGiven = not_given,
default_headers: Mapping[str, str] | None = None,
set_default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
set_default_query: Mapping[str, object] | None = None,
_extra_kwargs: Mapping[str, Any] = {},
) -> Self:
"""
Create a new client instance re-using the same options given to the current client with optional overriding.
"""
if default_headers is not None and set_default_headers is not None:
raise ValueError("The `default_headers` and `set_default_headers` arguments are mutually exclusive")
if default_query is not None and set_default_query is not None:
raise ValueError("The `default_query` and `set_default_query` arguments are mutually exclusive")
headers = self._custom_headers
if default_headers is not None:
headers = {**headers, **default_headers}
elif set_default_headers is not None:
headers = set_default_headers
params = self._custom_query
if default_query is not None:
params = {**params, **default_query}
elif set_default_query is not None:
params = set_default_query
http_client = http_client or self._client
return self.__class__(
bearer_token=bearer_token or self.bearer_token,
base_url=base_url or self.base_url,
timeout=self.timeout if isinstance(timeout, NotGiven) else timeout,
http_client=http_client,
max_retries=max_retries if is_given(max_retries) else self.max_retries,
default_headers=headers,
default_query=params,
**_extra_kwargs,
)
# Alias for `copy` for nicer inline usage, e.g.
# client.with_options(timeout=10).foo.create(...)
with_options = copy
@override
def _make_status_error(
self,
err_msg: str,
*,
body: object,
response: httpx.Response,
) -> APIStatusError:
if response.status_code == 400:
return _exceptions.BadRequestError(err_msg, response=response, body=body)
if response.status_code == 401:
return _exceptions.AuthenticationError(err_msg, response=response, body=body)
if response.status_code == 403:
return _exceptions.PermissionDeniedError(err_msg, response=response, body=body)
if response.status_code == 404:
return _exceptions.NotFoundError(err_msg, response=response, body=body)
if response.status_code == 409:
return _exceptions.ConflictError(err_msg, response=response, body=body)
if response.status_code == 422:
return _exceptions.UnprocessableEntityError(err_msg, response=response, body=body)
if response.status_code == 429:
return _exceptions.RateLimitError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.InternalServerError(err_msg, response=response, body=body)
return APIStatusError(err_msg, response=response, body=body)
class GitpodWithRawResponse:
_client: Gitpod
def __init__(self, client: Gitpod) -> None:
self._client = client
@cached_property
def accounts(self) -> accounts.AccountsResourceWithRawResponse:
from .resources.accounts import AccountsResourceWithRawResponse
return AccountsResourceWithRawResponse(self._client.accounts)
@cached_property
def agents(self) -> agents.AgentsResourceWithRawResponse:
from .resources.agents import AgentsResourceWithRawResponse
return AgentsResourceWithRawResponse(self._client.agents)
@cached_property
def editors(self) -> editors.EditorsResourceWithRawResponse:
from .resources.editors import EditorsResourceWithRawResponse
return EditorsResourceWithRawResponse(self._client.editors)
@cached_property
def environments(self) -> environments.EnvironmentsResourceWithRawResponse:
from .resources.environments import EnvironmentsResourceWithRawResponse
return EnvironmentsResourceWithRawResponse(self._client.environments)
@cached_property
def errors(self) -> errors.ErrorsResourceWithRawResponse:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import ErrorsResourceWithRawResponse
return ErrorsResourceWithRawResponse(self._client.errors)
@cached_property
def events(self) -> events.EventsResourceWithRawResponse:
from .resources.events import EventsResourceWithRawResponse
return EventsResourceWithRawResponse(self._client.events)
@cached_property
def gateways(self) -> gateways.GatewaysResourceWithRawResponse:
from .resources.gateways import GatewaysResourceWithRawResponse
return GatewaysResourceWithRawResponse(self._client.gateways)
@cached_property
def groups(self) -> groups.GroupsResourceWithRawResponse:
from .resources.groups import GroupsResourceWithRawResponse
return GroupsResourceWithRawResponse(self._client.groups)
@cached_property
def identity(self) -> identity.IdentityResourceWithRawResponse:
from .resources.identity import IdentityResourceWithRawResponse
return IdentityResourceWithRawResponse(self._client.identity)
@cached_property
def organizations(self) -> organizations.OrganizationsResourceWithRawResponse:
from .resources.organizations import OrganizationsResourceWithRawResponse
return OrganizationsResourceWithRawResponse(self._client.organizations)
@cached_property
def prebuilds(self) -> prebuilds.PrebuildsResourceWithRawResponse:
"""
PrebuildService manages prebuilds for projects to enable faster environment startup times.
Prebuilds create snapshots of environments that can be used to provision new environments quickly.
"""
from .resources.prebuilds import PrebuildsResourceWithRawResponse
return PrebuildsResourceWithRawResponse(self._client.prebuilds)
@cached_property
def projects(self) -> projects.ProjectsResourceWithRawResponse:
from .resources.projects import ProjectsResourceWithRawResponse
return ProjectsResourceWithRawResponse(self._client.projects)
@cached_property
def runners(self) -> runners.RunnersResourceWithRawResponse:
from .resources.runners import RunnersResourceWithRawResponse
return RunnersResourceWithRawResponse(self._client.runners)
@cached_property
def secrets(self) -> secrets.SecretsResourceWithRawResponse:
from .resources.secrets import SecretsResourceWithRawResponse
return SecretsResourceWithRawResponse(self._client.secrets)
@cached_property
def usage(self) -> usage.UsageResourceWithRawResponse:
"""
UsageService provides usage information about environments, users, and projects.
"""
from .resources.usage import UsageResourceWithRawResponse
return UsageResourceWithRawResponse(self._client.usage)
@cached_property
def users(self) -> users.UsersResourceWithRawResponse:
from .resources.users import UsersResourceWithRawResponse
return UsersResourceWithRawResponse(self._client.users)
class AsyncGitpodWithRawResponse:
_client: AsyncGitpod
def __init__(self, client: AsyncGitpod) -> None:
self._client = client
@cached_property
def accounts(self) -> accounts.AsyncAccountsResourceWithRawResponse:
from .resources.accounts import AsyncAccountsResourceWithRawResponse
return AsyncAccountsResourceWithRawResponse(self._client.accounts)
@cached_property
def agents(self) -> agents.AsyncAgentsResourceWithRawResponse:
from .resources.agents import AsyncAgentsResourceWithRawResponse
return AsyncAgentsResourceWithRawResponse(self._client.agents)
@cached_property
def editors(self) -> editors.AsyncEditorsResourceWithRawResponse:
from .resources.editors import AsyncEditorsResourceWithRawResponse
return AsyncEditorsResourceWithRawResponse(self._client.editors)
@cached_property
def environments(self) -> environments.AsyncEnvironmentsResourceWithRawResponse:
from .resources.environments import AsyncEnvironmentsResourceWithRawResponse
return AsyncEnvironmentsResourceWithRawResponse(self._client.environments)
@cached_property
def errors(self) -> errors.AsyncErrorsResourceWithRawResponse:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import AsyncErrorsResourceWithRawResponse
return AsyncErrorsResourceWithRawResponse(self._client.errors)
@cached_property
def events(self) -> events.AsyncEventsResourceWithRawResponse:
from .resources.events import AsyncEventsResourceWithRawResponse
return AsyncEventsResourceWithRawResponse(self._client.events)
@cached_property
def gateways(self) -> gateways.AsyncGatewaysResourceWithRawResponse:
from .resources.gateways import AsyncGatewaysResourceWithRawResponse
return AsyncGatewaysResourceWithRawResponse(self._client.gateways)
@cached_property
def groups(self) -> groups.AsyncGroupsResourceWithRawResponse:
from .resources.groups import AsyncGroupsResourceWithRawResponse
return AsyncGroupsResourceWithRawResponse(self._client.groups)
@cached_property
def identity(self) -> identity.AsyncIdentityResourceWithRawResponse:
from .resources.identity import AsyncIdentityResourceWithRawResponse
return AsyncIdentityResourceWithRawResponse(self._client.identity)
@cached_property
def organizations(self) -> organizations.AsyncOrganizationsResourceWithRawResponse:
from .resources.organizations import AsyncOrganizationsResourceWithRawResponse
return AsyncOrganizationsResourceWithRawResponse(self._client.organizations)
@cached_property
def prebuilds(self) -> prebuilds.AsyncPrebuildsResourceWithRawResponse:
"""
PrebuildService manages prebuilds for projects to enable faster environment startup times.
Prebuilds create snapshots of environments that can be used to provision new environments quickly.
"""
from .resources.prebuilds import AsyncPrebuildsResourceWithRawResponse
return AsyncPrebuildsResourceWithRawResponse(self._client.prebuilds)
@cached_property
def projects(self) -> projects.AsyncProjectsResourceWithRawResponse:
from .resources.projects import AsyncProjectsResourceWithRawResponse
return AsyncProjectsResourceWithRawResponse(self._client.projects)
@cached_property
def runners(self) -> runners.AsyncRunnersResourceWithRawResponse:
from .resources.runners import AsyncRunnersResourceWithRawResponse
return AsyncRunnersResourceWithRawResponse(self._client.runners)
@cached_property
def secrets(self) -> secrets.AsyncSecretsResourceWithRawResponse:
from .resources.secrets import AsyncSecretsResourceWithRawResponse
return AsyncSecretsResourceWithRawResponse(self._client.secrets)
@cached_property
def usage(self) -> usage.AsyncUsageResourceWithRawResponse:
"""
UsageService provides usage information about environments, users, and projects.
"""
from .resources.usage import AsyncUsageResourceWithRawResponse
return AsyncUsageResourceWithRawResponse(self._client.usage)
@cached_property
def users(self) -> users.AsyncUsersResourceWithRawResponse:
from .resources.users import AsyncUsersResourceWithRawResponse
return AsyncUsersResourceWithRawResponse(self._client.users)
class GitpodWithStreamedResponse:
_client: Gitpod
def __init__(self, client: Gitpod) -> None:
self._client = client
@cached_property
def accounts(self) -> accounts.AccountsResourceWithStreamingResponse:
from .resources.accounts import AccountsResourceWithStreamingResponse
return AccountsResourceWithStreamingResponse(self._client.accounts)
@cached_property
def agents(self) -> agents.AgentsResourceWithStreamingResponse:
from .resources.agents import AgentsResourceWithStreamingResponse
return AgentsResourceWithStreamingResponse(self._client.agents)
@cached_property
def editors(self) -> editors.EditorsResourceWithStreamingResponse:
from .resources.editors import EditorsResourceWithStreamingResponse
return EditorsResourceWithStreamingResponse(self._client.editors)
@cached_property
def environments(self) -> environments.EnvironmentsResourceWithStreamingResponse:
from .resources.environments import EnvironmentsResourceWithStreamingResponse
return EnvironmentsResourceWithStreamingResponse(self._client.environments)
@cached_property
def errors(self) -> errors.ErrorsResourceWithStreamingResponse:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import ErrorsResourceWithStreamingResponse
return ErrorsResourceWithStreamingResponse(self._client.errors)
@cached_property
def events(self) -> events.EventsResourceWithStreamingResponse:
from .resources.events import EventsResourceWithStreamingResponse
return EventsResourceWithStreamingResponse(self._client.events)
@cached_property
def gateways(self) -> gateways.GatewaysResourceWithStreamingResponse:
from .resources.gateways import GatewaysResourceWithStreamingResponse
return GatewaysResourceWithStreamingResponse(self._client.gateways)
@cached_property
def groups(self) -> groups.GroupsResourceWithStreamingResponse:
from .resources.groups import GroupsResourceWithStreamingResponse
return GroupsResourceWithStreamingResponse(self._client.groups)
@cached_property
def identity(self) -> identity.IdentityResourceWithStreamingResponse:
from .resources.identity import IdentityResourceWithStreamingResponse
return IdentityResourceWithStreamingResponse(self._client.identity)
@cached_property
def organizations(self) -> organizations.OrganizationsResourceWithStreamingResponse:
from .resources.organizations import OrganizationsResourceWithStreamingResponse
return OrganizationsResourceWithStreamingResponse(self._client.organizations)
@cached_property
def prebuilds(self) -> prebuilds.PrebuildsResourceWithStreamingResponse:
"""
PrebuildService manages prebuilds for projects to enable faster environment startup times.
Prebuilds create snapshots of environments that can be used to provision new environments quickly.
"""
from .resources.prebuilds import PrebuildsResourceWithStreamingResponse
return PrebuildsResourceWithStreamingResponse(self._client.prebuilds)
@cached_property
def projects(self) -> projects.ProjectsResourceWithStreamingResponse:
from .resources.projects import ProjectsResourceWithStreamingResponse
return ProjectsResourceWithStreamingResponse(self._client.projects)
@cached_property
def runners(self) -> runners.RunnersResourceWithStreamingResponse:
from .resources.runners import RunnersResourceWithStreamingResponse
return RunnersResourceWithStreamingResponse(self._client.runners)
@cached_property
def secrets(self) -> secrets.SecretsResourceWithStreamingResponse:
from .resources.secrets import SecretsResourceWithStreamingResponse
return SecretsResourceWithStreamingResponse(self._client.secrets)
@cached_property
def usage(self) -> usage.UsageResourceWithStreamingResponse:
"""
UsageService provides usage information about environments, users, and projects.
"""
from .resources.usage import UsageResourceWithStreamingResponse
return UsageResourceWithStreamingResponse(self._client.usage)
@cached_property
def users(self) -> users.UsersResourceWithStreamingResponse:
from .resources.users import UsersResourceWithStreamingResponse
return UsersResourceWithStreamingResponse(self._client.users)
class AsyncGitpodWithStreamedResponse:
_client: AsyncGitpod
def __init__(self, client: AsyncGitpod) -> None:
self._client = client
@cached_property
def accounts(self) -> accounts.AsyncAccountsResourceWithStreamingResponse:
from .resources.accounts import AsyncAccountsResourceWithStreamingResponse
return AsyncAccountsResourceWithStreamingResponse(self._client.accounts)
@cached_property
def agents(self) -> agents.AsyncAgentsResourceWithStreamingResponse:
from .resources.agents import AsyncAgentsResourceWithStreamingResponse
return AsyncAgentsResourceWithStreamingResponse(self._client.agents)
@cached_property
def editors(self) -> editors.AsyncEditorsResourceWithStreamingResponse:
from .resources.editors import AsyncEditorsResourceWithStreamingResponse
return AsyncEditorsResourceWithStreamingResponse(self._client.editors)
@cached_property
def environments(self) -> environments.AsyncEnvironmentsResourceWithStreamingResponse:
from .resources.environments import AsyncEnvironmentsResourceWithStreamingResponse
return AsyncEnvironmentsResourceWithStreamingResponse(self._client.environments)
@cached_property
def errors(self) -> errors.AsyncErrorsResourceWithStreamingResponse:
"""
ErrorsService provides endpoints for clients to report errors
that will be sent to error reporting systems.
"""
from .resources.errors import AsyncErrorsResourceWithStreamingResponse