-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathusers_api.py
More file actions
568 lines (497 loc) · 19.4 KB
/
users_api.py
File metadata and controls
568 lines (497 loc) · 19.4 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
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019-Present Datadog, Inc.
from __future__ import annotations
import collections
from typing import Any, Dict, Union
from datadog_api_client.api_client import ApiClient, Endpoint as _Endpoint
from datadog_api_client.configuration import Configuration
from datadog_api_client.model_utils import (
set_attribute_from_path,
get_attribute_from_path,
UnsetType,
unset,
)
from datadog_api_client.v2.model.anonymize_users_response import AnonymizeUsersResponse
from datadog_api_client.v2.model.anonymize_users_request import AnonymizeUsersRequest
from datadog_api_client.v2.model.user_invitations_response import UserInvitationsResponse
from datadog_api_client.v2.model.user_invitations_request import UserInvitationsRequest
from datadog_api_client.v2.model.user_invitation_response import UserInvitationResponse
from datadog_api_client.v2.model.users_response import UsersResponse
from datadog_api_client.v2.model.query_sort_order import QuerySortOrder
from datadog_api_client.v2.model.user import User
from datadog_api_client.v2.model.user_response import UserResponse
from datadog_api_client.v2.model.user_create_request import UserCreateRequest
from datadog_api_client.v2.model.user_update_request import UserUpdateRequest
from datadog_api_client.v2.model.permissions_response import PermissionsResponse
class UsersApi:
"""
Create, edit, and disable users.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient(Configuration())
self.api_client = api_client
self._anonymize_users_endpoint = _Endpoint(
settings={
"response_type": (AnonymizeUsersResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/anonymize_users",
"operation_id": "anonymize_users",
"http_method": "PUT",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (AnonymizeUsersRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._create_user_endpoint = _Endpoint(
settings={
"response_type": (UserResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users",
"operation_id": "create_user",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (UserCreateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._disable_user_endpoint = _Endpoint(
settings={
"response_type": None,
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users/{user_id}",
"operation_id": "disable_user",
"http_method": "DELETE",
"version": "v2",
},
params_map={
"user_id": {
"required": True,
"openapi_types": (str,),
"attribute": "user_id",
"location": "path",
},
},
headers_map={
"accept": ["*/*"],
},
api_client=api_client,
)
self._get_invitation_endpoint = _Endpoint(
settings={
"response_type": (UserInvitationResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/user_invitations/{user_invitation_uuid}",
"operation_id": "get_invitation",
"http_method": "GET",
"version": "v2",
},
params_map={
"user_invitation_uuid": {
"required": True,
"openapi_types": (str,),
"attribute": "user_invitation_uuid",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._get_user_endpoint = _Endpoint(
settings={
"response_type": (UserResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users/{user_id}",
"operation_id": "get_user",
"http_method": "GET",
"version": "v2",
},
params_map={
"user_id": {
"required": True,
"openapi_types": (str,),
"attribute": "user_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._list_user_organizations_endpoint = _Endpoint(
settings={
"response_type": (UserResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users/{user_id}/orgs",
"operation_id": "list_user_organizations",
"http_method": "GET",
"version": "v2",
},
params_map={
"user_id": {
"required": True,
"openapi_types": (str,),
"attribute": "user_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._list_user_permissions_endpoint = _Endpoint(
settings={
"response_type": (PermissionsResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users/{user_id}/permissions",
"operation_id": "list_user_permissions",
"http_method": "GET",
"version": "v2",
},
params_map={
"user_id": {
"required": True,
"openapi_types": (str,),
"attribute": "user_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._list_users_endpoint = _Endpoint(
settings={
"response_type": (UsersResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users",
"operation_id": "list_users",
"http_method": "GET",
"version": "v2",
},
params_map={
"page_size": {
"openapi_types": (int,),
"attribute": "page[size]",
"location": "query",
},
"page_number": {
"openapi_types": (int,),
"attribute": "page[number]",
"location": "query",
},
"sort": {
"openapi_types": (str,),
"attribute": "sort",
"location": "query",
},
"sort_dir": {
"openapi_types": (QuerySortOrder,),
"attribute": "sort_dir",
"location": "query",
},
"filter": {
"openapi_types": (str,),
"attribute": "filter",
"location": "query",
},
"filter_status": {
"openapi_types": (str,),
"attribute": "filter[status]",
"location": "query",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._send_invitations_endpoint = _Endpoint(
settings={
"response_type": (UserInvitationsResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/user_invitations",
"operation_id": "send_invitations",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (UserInvitationsRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._update_user_endpoint = _Endpoint(
settings={
"response_type": (UserResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/users/{user_id}",
"operation_id": "update_user",
"http_method": "PATCH",
"version": "v2",
},
params_map={
"user_id": {
"required": True,
"openapi_types": (str,),
"attribute": "user_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (UserUpdateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
def anonymize_users(
self,
body: AnonymizeUsersRequest,
) -> AnonymizeUsersResponse:
"""Anonymize users.
Anonymize a list of users, removing their personal data. This operation is irreversible.
Requires the ``user_access_manage`` permission.
:type body: AnonymizeUsersRequest
:rtype: AnonymizeUsersResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._anonymize_users_endpoint.call_with_http_info(**kwargs)
def create_user(
self,
body: UserCreateRequest,
) -> UserResponse:
"""Create a user.
Create a user for your organization.
:type body: UserCreateRequest
:rtype: UserResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._create_user_endpoint.call_with_http_info(**kwargs)
def disable_user(
self,
user_id: str,
) -> None:
"""Disable a user.
Disable a user. Can only be used with an application key belonging
to an administrator user.
:param user_id: The ID of the user.
:type user_id: str
:rtype: None
"""
kwargs: Dict[str, Any] = {}
kwargs["user_id"] = user_id
return self._disable_user_endpoint.call_with_http_info(**kwargs)
def get_invitation(
self,
user_invitation_uuid: str,
) -> UserInvitationResponse:
"""Get a user invitation.
Returns a single user invitation by its UUID.
:param user_invitation_uuid: The UUID of the user invitation.
:type user_invitation_uuid: str
:rtype: UserInvitationResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["user_invitation_uuid"] = user_invitation_uuid
return self._get_invitation_endpoint.call_with_http_info(**kwargs)
def get_user(
self,
user_id: str,
) -> UserResponse:
"""Get user details.
Get a user in the organization specified by the user’s ``user_id``.
:param user_id: The ID of the user.
:type user_id: str
:rtype: UserResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["user_id"] = user_id
return self._get_user_endpoint.call_with_http_info(**kwargs)
def list_user_organizations(
self,
user_id: str,
) -> UserResponse:
"""Get a user organization.
Get a user organization. Returns the user information and all organizations
joined by this user.
:param user_id: The ID of the user.
:type user_id: str
:rtype: UserResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["user_id"] = user_id
return self._list_user_organizations_endpoint.call_with_http_info(**kwargs)
def list_user_permissions(
self,
user_id: str,
) -> PermissionsResponse:
"""Get a user permissions.
Get a user permission set. Returns a list of the user’s permissions
granted by the associated user's roles.
:param user_id: The ID of the user.
:type user_id: str
:rtype: PermissionsResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["user_id"] = user_id
return self._list_user_permissions_endpoint.call_with_http_info(**kwargs)
def list_users(
self,
*,
page_size: Union[int, UnsetType] = unset,
page_number: Union[int, UnsetType] = unset,
sort: Union[str, UnsetType] = unset,
sort_dir: Union[QuerySortOrder, UnsetType] = unset,
filter: Union[str, UnsetType] = unset,
filter_status: Union[str, UnsetType] = unset,
) -> UsersResponse:
"""List all users.
Get the list of all users in the organization. This list includes
all users even if they are deactivated or unverified.
:param page_size: Size for a given page. The maximum allowed value is 100.
:type page_size: int, optional
:param page_number: Specific page number to return.
:type page_number: int, optional
:param sort: User attribute to order results by. Sort order is ascending by default.
Sort order is descending if the field
is prefixed by a negative sign, for example ``sort=-name``. Options: ``name`` ,
``modified_at`` , ``user_count``.
:type sort: str, optional
:param sort_dir: Direction of sort. Options: ``asc`` , ``desc``.
:type sort_dir: QuerySortOrder, optional
:param filter: Filter all users by the given string. Defaults to no filtering.
:type filter: str, optional
:param filter_status: Filter on status attribute.
Comma separated list, with possible values ``Active`` , ``Pending`` , and ``Disabled``.
Defaults to no filtering.
:type filter_status: str, optional
:rtype: UsersResponse
"""
kwargs: Dict[str, Any] = {}
if page_size is not unset:
kwargs["page_size"] = page_size
if page_number is not unset:
kwargs["page_number"] = page_number
if sort is not unset:
kwargs["sort"] = sort
if sort_dir is not unset:
kwargs["sort_dir"] = sort_dir
if filter is not unset:
kwargs["filter"] = filter
if filter_status is not unset:
kwargs["filter_status"] = filter_status
return self._list_users_endpoint.call_with_http_info(**kwargs)
def list_users_with_pagination(
self,
*,
page_size: Union[int, UnsetType] = unset,
page_number: Union[int, UnsetType] = unset,
sort: Union[str, UnsetType] = unset,
sort_dir: Union[QuerySortOrder, UnsetType] = unset,
filter: Union[str, UnsetType] = unset,
filter_status: Union[str, UnsetType] = unset,
) -> collections.abc.Iterable[User]:
"""List all users.
Provide a paginated version of :meth:`list_users`, returning all items.
:param page_size: Size for a given page. The maximum allowed value is 100.
:type page_size: int, optional
:param page_number: Specific page number to return.
:type page_number: int, optional
:param sort: User attribute to order results by. Sort order is ascending by default.
Sort order is descending if the field
is prefixed by a negative sign, for example ``sort=-name``. Options: ``name`` ,
``modified_at`` , ``user_count``.
:type sort: str, optional
:param sort_dir: Direction of sort. Options: ``asc`` , ``desc``.
:type sort_dir: QuerySortOrder, optional
:param filter: Filter all users by the given string. Defaults to no filtering.
:type filter: str, optional
:param filter_status: Filter on status attribute.
Comma separated list, with possible values ``Active`` , ``Pending`` , and ``Disabled``.
Defaults to no filtering.
:type filter_status: str, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[User]
"""
kwargs: Dict[str, Any] = {}
if page_size is not unset:
kwargs["page_size"] = page_size
if page_number is not unset:
kwargs["page_number"] = page_number
if sort is not unset:
kwargs["sort"] = sort
if sort_dir is not unset:
kwargs["sort_dir"] = sort_dir
if filter is not unset:
kwargs["filter"] = filter
if filter_status is not unset:
kwargs["filter_status"] = filter_status
local_page_size = get_attribute_from_path(kwargs, "page_size", 10)
endpoint = self._list_users_endpoint
set_attribute_from_path(kwargs, "page_size", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"page_param": "page_number",
"page_start": 0,
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)
def send_invitations(
self,
body: UserInvitationsRequest,
) -> UserInvitationsResponse:
"""Send invitation emails.
Sends emails to one or more users inviting them to join the organization.
:type body: UserInvitationsRequest
:rtype: UserInvitationsResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._send_invitations_endpoint.call_with_http_info(**kwargs)
def update_user(
self,
user_id: str,
body: UserUpdateRequest,
) -> UserResponse:
"""Update a user.
Edit a user. Can only be used with an application key belonging
to an administrator user.
:param user_id: The ID of the user.
:type user_id: str
:type body: UserUpdateRequest
:rtype: UserResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["user_id"] = user_id
kwargs["body"] = body
return self._update_user_endpoint.call_with_http_info(**kwargs)