-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts.py
652 lines (515 loc) · 21.7 KB
/
accounts.py
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
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Optional
import httpx
from ..types import (
account_delete_params,
account_retrieve_params,
account_get_sso_login_url_params,
account_list_login_providers_params,
)
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
from .._utils import (
maybe_transform,
async_maybe_transform,
)
from .._compat import cached_property
from .._resource import SyncAPIResource, AsyncAPIResource
from .._response import (
to_raw_response_wrapper,
to_streamed_response_wrapper,
async_to_raw_response_wrapper,
async_to_streamed_response_wrapper,
)
from ..pagination import SyncLoginProvidersPage, AsyncLoginProvidersPage
from .._base_client import AsyncPaginator, make_request_options
from ..types.login_provider import LoginProvider
from ..types.account_retrieve_response import AccountRetrieveResponse
from ..types.account_get_sso_login_url_response import AccountGetSSOLoginURLResponse
__all__ = ["AccountsResource", "AsyncAccountsResource"]
class AccountsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> AccountsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
"""
return AccountsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AccountsResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
"""
return AccountsResourceWithStreamingResponse(self)
def retrieve(
self,
*,
empty: bool | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AccountRetrieveResponse:
"""
Gets information about the currently authenticated account.
Use this method to:
- Retrieve account profile information
- Check organization memberships
- View account settings
- Get joinable organizations
### Examples
- Get account details:
Retrieves information about the authenticated account.
```yaml
{}
```
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._post(
"/gitpod.v1.AccountService/GetAccount",
body=maybe_transform({"empty": empty}, account_retrieve_params.AccountRetrieveParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=AccountRetrieveResponse,
)
def delete(
self,
*,
account_id: str,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> object:
"""
Deletes an account permanently.
Use this method to:
- Remove unused accounts
- Clean up test accounts
- Complete account deletion requests
The account must not be an active member of any organization.
### Examples
- Delete account:
Permanently removes an account.
```yaml
accountId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
```
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._post(
"/gitpod.v1.AccountService/DeleteAccount",
body=maybe_transform({"account_id": account_id}, account_delete_params.AccountDeleteParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=object,
)
def get_sso_login_url(
self,
*,
email: str,
return_to: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AccountGetSSOLoginURLResponse:
"""
Gets the SSO login URL for a specific email domain.
Use this method to:
- Initiate SSO authentication
- Get organization-specific login URLs
- Handle SSO redirects
### Examples
- Get login URL:
Retrieves SSO URL for email domain.
```yaml
email: "user@company.com"
```
- Get URL with return path:
Gets SSO URL with specific return location.
```yaml
email: "user@company.com"
returnTo: "https://gitpod.io/workspaces"
```
Args:
email: email is the email the user wants to login with
return_to: return_to is the URL the user will be redirected to after login
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._post(
"/gitpod.v1.AccountService/GetSSOLoginURL",
body=maybe_transform(
{
"email": email,
"return_to": return_to,
},
account_get_sso_login_url_params.AccountGetSSOLoginURLParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=AccountGetSSOLoginURLResponse,
)
def list_login_providers(
self,
*,
token: str | NotGiven = NOT_GIVEN,
page_size: int | NotGiven = NOT_GIVEN,
filter: account_list_login_providers_params.Filter | NotGiven = NOT_GIVEN,
pagination: account_list_login_providers_params.Pagination | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncLoginProvidersPage[LoginProvider]:
"""
Lists available login providers with optional filtering.
Use this method to:
- View supported authentication methods
- Get provider-specific login URLs
- Filter providers by invite
### Examples
- List all providers:
Shows all available login providers.
```yaml
pagination:
pageSize: 20
```
- List for specific invite:
Shows providers available for an invite.
```yaml
filter:
inviteId: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
pagination:
pageSize: 20
```
Args:
filter: filter contains the filter options for listing login methods
pagination: pagination contains the pagination options for listing login methods
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/gitpod.v1.AccountService/ListLoginProviders",
page=SyncLoginProvidersPage[LoginProvider],
body=maybe_transform(
{
"filter": filter,
"pagination": pagination,
},
account_list_login_providers_params.AccountListLoginProvidersParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"token": token,
"page_size": page_size,
},
account_list_login_providers_params.AccountListLoginProvidersParams,
),
),
model=LoginProvider,
method="post",
)
class AsyncAccountsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
"""
return AsyncAccountsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
"""
return AsyncAccountsResourceWithStreamingResponse(self)
async def retrieve(
self,
*,
empty: bool | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AccountRetrieveResponse:
"""
Gets information about the currently authenticated account.
Use this method to:
- Retrieve account profile information
- Check organization memberships
- View account settings
- Get joinable organizations
### Examples
- Get account details:
Retrieves information about the authenticated account.
```yaml
{}
```
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return await self._post(
"/gitpod.v1.AccountService/GetAccount",
body=await async_maybe_transform({"empty": empty}, account_retrieve_params.AccountRetrieveParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=AccountRetrieveResponse,
)
async def delete(
self,
*,
account_id: str,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> object:
"""
Deletes an account permanently.
Use this method to:
- Remove unused accounts
- Clean up test accounts
- Complete account deletion requests
The account must not be an active member of any organization.
### Examples
- Delete account:
Permanently removes an account.
```yaml
accountId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
```
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return await self._post(
"/gitpod.v1.AccountService/DeleteAccount",
body=await async_maybe_transform({"account_id": account_id}, account_delete_params.AccountDeleteParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=object,
)
async def get_sso_login_url(
self,
*,
email: str,
return_to: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AccountGetSSOLoginURLResponse:
"""
Gets the SSO login URL for a specific email domain.
Use this method to:
- Initiate SSO authentication
- Get organization-specific login URLs
- Handle SSO redirects
### Examples
- Get login URL:
Retrieves SSO URL for email domain.
```yaml
email: "user@company.com"
```
- Get URL with return path:
Gets SSO URL with specific return location.
```yaml
email: "user@company.com"
returnTo: "https://gitpod.io/workspaces"
```
Args:
email: email is the email the user wants to login with
return_to: return_to is the URL the user will be redirected to after login
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return await self._post(
"/gitpod.v1.AccountService/GetSSOLoginURL",
body=await async_maybe_transform(
{
"email": email,
"return_to": return_to,
},
account_get_sso_login_url_params.AccountGetSSOLoginURLParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=AccountGetSSOLoginURLResponse,
)
def list_login_providers(
self,
*,
token: str | NotGiven = NOT_GIVEN,
page_size: int | NotGiven = NOT_GIVEN,
filter: account_list_login_providers_params.Filter | NotGiven = NOT_GIVEN,
pagination: account_list_login_providers_params.Pagination | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AsyncPaginator[LoginProvider, AsyncLoginProvidersPage[LoginProvider]]:
"""
Lists available login providers with optional filtering.
Use this method to:
- View supported authentication methods
- Get provider-specific login URLs
- Filter providers by invite
### Examples
- List all providers:
Shows all available login providers.
```yaml
pagination:
pageSize: 20
```
- List for specific invite:
Shows providers available for an invite.
```yaml
filter:
inviteId: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
pagination:
pageSize: 20
```
Args:
filter: filter contains the filter options for listing login methods
pagination: pagination contains the pagination options for listing login methods
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/gitpod.v1.AccountService/ListLoginProviders",
page=AsyncLoginProvidersPage[LoginProvider],
body=maybe_transform(
{
"filter": filter,
"pagination": pagination,
},
account_list_login_providers_params.AccountListLoginProvidersParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"token": token,
"page_size": page_size,
},
account_list_login_providers_params.AccountListLoginProvidersParams,
),
),
model=LoginProvider,
method="post",
)
class AccountsResourceWithRawResponse:
def __init__(self, accounts: AccountsResource) -> None:
self._accounts = accounts
self.retrieve = to_raw_response_wrapper(
accounts.retrieve,
)
self.delete = to_raw_response_wrapper(
accounts.delete,
)
self.get_sso_login_url = to_raw_response_wrapper(
accounts.get_sso_login_url,
)
self.list_login_providers = to_raw_response_wrapper(
accounts.list_login_providers,
)
class AsyncAccountsResourceWithRawResponse:
def __init__(self, accounts: AsyncAccountsResource) -> None:
self._accounts = accounts
self.retrieve = async_to_raw_response_wrapper(
accounts.retrieve,
)
self.delete = async_to_raw_response_wrapper(
accounts.delete,
)
self.get_sso_login_url = async_to_raw_response_wrapper(
accounts.get_sso_login_url,
)
self.list_login_providers = async_to_raw_response_wrapper(
accounts.list_login_providers,
)
class AccountsResourceWithStreamingResponse:
def __init__(self, accounts: AccountsResource) -> None:
self._accounts = accounts
self.retrieve = to_streamed_response_wrapper(
accounts.retrieve,
)
self.delete = to_streamed_response_wrapper(
accounts.delete,
)
self.get_sso_login_url = to_streamed_response_wrapper(
accounts.get_sso_login_url,
)
self.list_login_providers = to_streamed_response_wrapper(
accounts.list_login_providers,
)
class AsyncAccountsResourceWithStreamingResponse:
def __init__(self, accounts: AsyncAccountsResource) -> None:
self._accounts = accounts
self.retrieve = async_to_streamed_response_wrapper(
accounts.retrieve,
)
self.delete = async_to_streamed_response_wrapper(
accounts.delete,
)
self.get_sso_login_url = async_to_streamed_response_wrapper(
accounts.get_sso_login_url,
)
self.list_login_providers = async_to_streamed_response_wrapper(
accounts.list_login_providers,
)