-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathclient.py
More file actions
461 lines (377 loc) · 21.5 KB
/
client.py
File metadata and controls
461 lines (377 loc) · 21.5 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
# This file was auto-generated by Fern from our API Definition.
import typing
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.request_options import RequestOptions
from ..types.v_1_audit_response import V1AuditResponse
from .raw_client import AsyncRawAuditClient, RawAuditClient
from .types.audit_service_list_audit_events_request_filter_ops_action_type import (
AuditServiceListAuditEventsRequestFilterOpsActionType,
)
from .types.audit_service_list_audit_events_request_filter_ops_context_access_type import (
AuditServiceListAuditEventsRequestFilterOpsContextAccessType,
)
from .types.audit_service_list_audit_events_request_filter_ops_context_actor_type import (
AuditServiceListAuditEventsRequestFilterOpsContextActorType,
)
from .types.audit_service_list_audit_events_request_filter_ops_context_auth_mode import (
AuditServiceListAuditEventsRequestFilterOpsContextAuthMode,
)
from .types.audit_service_list_audit_events_request_filter_ops_resource_type import (
AuditServiceListAuditEventsRequestFilterOpsResourceType,
)
from .types.audit_service_list_audit_events_request_sort_ops_order_by import (
AuditServiceListAuditEventsRequestSortOpsOrderBy,
)
class AuditClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawAuditClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawAuditClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawAuditClient
"""
return self._raw_client
def audit_service_list_audit_events(
self,
*,
filter_ops_account_id: str,
filter_ops_context_change_id: typing.Optional[str] = None,
filter_ops_context_request_id: typing.Optional[str] = None,
filter_ops_context_trace_id: typing.Optional[str] = None,
filter_ops_context_session_id: typing.Optional[str] = None,
filter_ops_context_actor: typing.Optional[str] = None,
filter_ops_context_actor_type: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextActorType
] = None,
filter_ops_context_access_type: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextAccessType
] = None,
filter_ops_context_ip_address: typing.Optional[str] = None,
filter_ops_context_origin: typing.Optional[str] = None,
filter_ops_context_auth_mode: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextAuthMode
] = None,
filter_ops_context_jwt_id: typing.Optional[str] = None,
filter_ops_context_bearer_token_context_id: typing.Optional[str] = None,
filter_ops_parent_account_id: typing.Optional[str] = None,
filter_ops_workspace_id: typing.Optional[str] = None,
filter_ops_vault_id: typing.Optional[str] = None,
filter_ops_resource_i_ds: typing.Optional[str] = None,
filter_ops_action_type: typing.Optional[AuditServiceListAuditEventsRequestFilterOpsActionType] = None,
filter_ops_resource_type: typing.Optional[AuditServiceListAuditEventsRequestFilterOpsResourceType] = None,
filter_ops_tags: typing.Optional[str] = None,
filter_ops_response_code: typing.Optional[int] = None,
filter_ops_start_time: typing.Optional[str] = None,
filter_ops_end_time: typing.Optional[str] = None,
filter_ops_api_name: typing.Optional[str] = None,
filter_ops_response_message: typing.Optional[str] = None,
filter_ops_http_method: typing.Optional[str] = None,
filter_ops_http_uri: typing.Optional[str] = None,
sort_ops_sort_by: typing.Optional[str] = None,
sort_ops_order_by: typing.Optional[AuditServiceListAuditEventsRequestSortOpsOrderBy] = None,
after_ops_timestamp: typing.Optional[str] = None,
after_ops_change_id: typing.Optional[str] = None,
limit: typing.Optional[int] = None,
offset: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> V1AuditResponse:
"""
Lists audit events that match query parameters.
Parameters
----------
filter_ops_account_id : str
Resources with the specified account ID.
filter_ops_context_change_id : typing.Optional[str]
ID for the audit event.
filter_ops_context_request_id : typing.Optional[str]
ID for the request that caused the event.
filter_ops_context_trace_id : typing.Optional[str]
ID for the request set by the service that received the request.
filter_ops_context_session_id : typing.Optional[str]
ID for the session in which the request was sent.
filter_ops_context_actor : typing.Optional[str]
Member who sent the request. Depending on `actorType`, this may be a user ID or a service account ID.
filter_ops_context_actor_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextActorType]
Type of member who sent the request.
filter_ops_context_access_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextAccessType]
Type of access for the request.
filter_ops_context_ip_address : typing.Optional[str]
IP Address of the client that made the request.
filter_ops_context_origin : typing.Optional[str]
HTTP Origin request header (including scheme, hostname, and port) of the request.
filter_ops_context_auth_mode : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextAuthMode]
Authentication mode the `actor` used.
filter_ops_context_jwt_id : typing.Optional[str]
ID of the JWT token.
filter_ops_context_bearer_token_context_id : typing.Optional[str]
Embedded User Context.
filter_ops_parent_account_id : typing.Optional[str]
Resources with the specified parent account ID.
filter_ops_workspace_id : typing.Optional[str]
Resources with the specified workspace ID.
filter_ops_vault_id : typing.Optional[str]
Resources with the specified vault ID.
filter_ops_resource_i_ds : typing.Optional[str]
Resources with a specified ID. If a resource matches at least one ID, the associated event is returned. Format is a comma-separated list of "\<resourceType\>/\<resourceID\>". For example, "VAULT/12345, USER/67890".
filter_ops_action_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsActionType]
Events with the specified action type.
filter_ops_resource_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsResourceType]
Resources with the specified type.
filter_ops_tags : typing.Optional[str]
Events with associated tags. If an event matches at least one tag, the event is returned. Comma-separated list. For example, "login, get".
filter_ops_response_code : typing.Optional[int]
HTTP response code of the request.
filter_ops_start_time : typing.Optional[str]
Start timestamp for the query, in SQL format.
filter_ops_end_time : typing.Optional[str]
End timestamp for the query, in SQL format.
filter_ops_api_name : typing.Optional[str]
Name of the API called in the request.
filter_ops_response_message : typing.Optional[str]
Response message of the request.
filter_ops_http_method : typing.Optional[str]
HTTP method of the request.
filter_ops_http_uri : typing.Optional[str]
HTTP URI of the request.
sort_ops_sort_by : typing.Optional[str]
Fully-qualified field by which to sort results. Field names should be in camel case (for example, "capitalization.camelCase").
sort_ops_order_by : typing.Optional[AuditServiceListAuditEventsRequestSortOpsOrderBy]
Ascending or descending ordering of results.
after_ops_timestamp : typing.Optional[str]
Timestamp provided in the previous audit response's `nextOps` attribute. An alternate way to manage response pagination. Can't be used with `sortOps` or `offset`. For the first request in a series of audit requests, leave blank.
after_ops_change_id : typing.Optional[str]
Change ID provided in the previous audit response's `nextOps` attribute. An alternate way to manage response pagination. Can't be used with `sortOps` or `offset`. For the first request in a series of audit requests, leave blank.
limit : typing.Optional[int]
Number of results to return.
offset : typing.Optional[int]
Record position at which to start returning results.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
V1AuditResponse
A successful response.
Examples
--------
from skyflow import Skyflow
client = Skyflow(token="YOUR_TOKEN", )
client.audit.audit_service_list_audit_events(filter_ops_account_id='filterOps.accountID', )
"""
_response = self._raw_client.audit_service_list_audit_events(
filter_ops_account_id=filter_ops_account_id,
filter_ops_context_change_id=filter_ops_context_change_id,
filter_ops_context_request_id=filter_ops_context_request_id,
filter_ops_context_trace_id=filter_ops_context_trace_id,
filter_ops_context_session_id=filter_ops_context_session_id,
filter_ops_context_actor=filter_ops_context_actor,
filter_ops_context_actor_type=filter_ops_context_actor_type,
filter_ops_context_access_type=filter_ops_context_access_type,
filter_ops_context_ip_address=filter_ops_context_ip_address,
filter_ops_context_origin=filter_ops_context_origin,
filter_ops_context_auth_mode=filter_ops_context_auth_mode,
filter_ops_context_jwt_id=filter_ops_context_jwt_id,
filter_ops_context_bearer_token_context_id=filter_ops_context_bearer_token_context_id,
filter_ops_parent_account_id=filter_ops_parent_account_id,
filter_ops_workspace_id=filter_ops_workspace_id,
filter_ops_vault_id=filter_ops_vault_id,
filter_ops_resource_i_ds=filter_ops_resource_i_ds,
filter_ops_action_type=filter_ops_action_type,
filter_ops_resource_type=filter_ops_resource_type,
filter_ops_tags=filter_ops_tags,
filter_ops_response_code=filter_ops_response_code,
filter_ops_start_time=filter_ops_start_time,
filter_ops_end_time=filter_ops_end_time,
filter_ops_api_name=filter_ops_api_name,
filter_ops_response_message=filter_ops_response_message,
filter_ops_http_method=filter_ops_http_method,
filter_ops_http_uri=filter_ops_http_uri,
sort_ops_sort_by=sort_ops_sort_by,
sort_ops_order_by=sort_ops_order_by,
after_ops_timestamp=after_ops_timestamp,
after_ops_change_id=after_ops_change_id,
limit=limit,
offset=offset,
request_options=request_options,
)
return _response.data
class AsyncAuditClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawAuditClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawAuditClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawAuditClient
"""
return self._raw_client
async def audit_service_list_audit_events(
self,
*,
filter_ops_account_id: str,
filter_ops_context_change_id: typing.Optional[str] = None,
filter_ops_context_request_id: typing.Optional[str] = None,
filter_ops_context_trace_id: typing.Optional[str] = None,
filter_ops_context_session_id: typing.Optional[str] = None,
filter_ops_context_actor: typing.Optional[str] = None,
filter_ops_context_actor_type: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextActorType
] = None,
filter_ops_context_access_type: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextAccessType
] = None,
filter_ops_context_ip_address: typing.Optional[str] = None,
filter_ops_context_origin: typing.Optional[str] = None,
filter_ops_context_auth_mode: typing.Optional[
AuditServiceListAuditEventsRequestFilterOpsContextAuthMode
] = None,
filter_ops_context_jwt_id: typing.Optional[str] = None,
filter_ops_context_bearer_token_context_id: typing.Optional[str] = None,
filter_ops_parent_account_id: typing.Optional[str] = None,
filter_ops_workspace_id: typing.Optional[str] = None,
filter_ops_vault_id: typing.Optional[str] = None,
filter_ops_resource_i_ds: typing.Optional[str] = None,
filter_ops_action_type: typing.Optional[AuditServiceListAuditEventsRequestFilterOpsActionType] = None,
filter_ops_resource_type: typing.Optional[AuditServiceListAuditEventsRequestFilterOpsResourceType] = None,
filter_ops_tags: typing.Optional[str] = None,
filter_ops_response_code: typing.Optional[int] = None,
filter_ops_start_time: typing.Optional[str] = None,
filter_ops_end_time: typing.Optional[str] = None,
filter_ops_api_name: typing.Optional[str] = None,
filter_ops_response_message: typing.Optional[str] = None,
filter_ops_http_method: typing.Optional[str] = None,
filter_ops_http_uri: typing.Optional[str] = None,
sort_ops_sort_by: typing.Optional[str] = None,
sort_ops_order_by: typing.Optional[AuditServiceListAuditEventsRequestSortOpsOrderBy] = None,
after_ops_timestamp: typing.Optional[str] = None,
after_ops_change_id: typing.Optional[str] = None,
limit: typing.Optional[int] = None,
offset: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> V1AuditResponse:
"""
Lists audit events that match query parameters.
Parameters
----------
filter_ops_account_id : str
Resources with the specified account ID.
filter_ops_context_change_id : typing.Optional[str]
ID for the audit event.
filter_ops_context_request_id : typing.Optional[str]
ID for the request that caused the event.
filter_ops_context_trace_id : typing.Optional[str]
ID for the request set by the service that received the request.
filter_ops_context_session_id : typing.Optional[str]
ID for the session in which the request was sent.
filter_ops_context_actor : typing.Optional[str]
Member who sent the request. Depending on `actorType`, this may be a user ID or a service account ID.
filter_ops_context_actor_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextActorType]
Type of member who sent the request.
filter_ops_context_access_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextAccessType]
Type of access for the request.
filter_ops_context_ip_address : typing.Optional[str]
IP Address of the client that made the request.
filter_ops_context_origin : typing.Optional[str]
HTTP Origin request header (including scheme, hostname, and port) of the request.
filter_ops_context_auth_mode : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsContextAuthMode]
Authentication mode the `actor` used.
filter_ops_context_jwt_id : typing.Optional[str]
ID of the JWT token.
filter_ops_context_bearer_token_context_id : typing.Optional[str]
Embedded User Context.
filter_ops_parent_account_id : typing.Optional[str]
Resources with the specified parent account ID.
filter_ops_workspace_id : typing.Optional[str]
Resources with the specified workspace ID.
filter_ops_vault_id : typing.Optional[str]
Resources with the specified vault ID.
filter_ops_resource_i_ds : typing.Optional[str]
Resources with a specified ID. If a resource matches at least one ID, the associated event is returned. Format is a comma-separated list of "\<resourceType\>/\<resourceID\>". For example, "VAULT/12345, USER/67890".
filter_ops_action_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsActionType]
Events with the specified action type.
filter_ops_resource_type : typing.Optional[AuditServiceListAuditEventsRequestFilterOpsResourceType]
Resources with the specified type.
filter_ops_tags : typing.Optional[str]
Events with associated tags. If an event matches at least one tag, the event is returned. Comma-separated list. For example, "login, get".
filter_ops_response_code : typing.Optional[int]
HTTP response code of the request.
filter_ops_start_time : typing.Optional[str]
Start timestamp for the query, in SQL format.
filter_ops_end_time : typing.Optional[str]
End timestamp for the query, in SQL format.
filter_ops_api_name : typing.Optional[str]
Name of the API called in the request.
filter_ops_response_message : typing.Optional[str]
Response message of the request.
filter_ops_http_method : typing.Optional[str]
HTTP method of the request.
filter_ops_http_uri : typing.Optional[str]
HTTP URI of the request.
sort_ops_sort_by : typing.Optional[str]
Fully-qualified field by which to sort results. Field names should be in camel case (for example, "capitalization.camelCase").
sort_ops_order_by : typing.Optional[AuditServiceListAuditEventsRequestSortOpsOrderBy]
Ascending or descending ordering of results.
after_ops_timestamp : typing.Optional[str]
Timestamp provided in the previous audit response's `nextOps` attribute. An alternate way to manage response pagination. Can't be used with `sortOps` or `offset`. For the first request in a series of audit requests, leave blank.
after_ops_change_id : typing.Optional[str]
Change ID provided in the previous audit response's `nextOps` attribute. An alternate way to manage response pagination. Can't be used with `sortOps` or `offset`. For the first request in a series of audit requests, leave blank.
limit : typing.Optional[int]
Number of results to return.
offset : typing.Optional[int]
Record position at which to start returning results.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
V1AuditResponse
A successful response.
Examples
--------
from skyflow import AsyncSkyflow
import asyncio
client = AsyncSkyflow(token="YOUR_TOKEN", )
async def main() -> None:
await client.audit.audit_service_list_audit_events(filter_ops_account_id='filterOps.accountID', )
asyncio.run(main())
"""
_response = await self._raw_client.audit_service_list_audit_events(
filter_ops_account_id=filter_ops_account_id,
filter_ops_context_change_id=filter_ops_context_change_id,
filter_ops_context_request_id=filter_ops_context_request_id,
filter_ops_context_trace_id=filter_ops_context_trace_id,
filter_ops_context_session_id=filter_ops_context_session_id,
filter_ops_context_actor=filter_ops_context_actor,
filter_ops_context_actor_type=filter_ops_context_actor_type,
filter_ops_context_access_type=filter_ops_context_access_type,
filter_ops_context_ip_address=filter_ops_context_ip_address,
filter_ops_context_origin=filter_ops_context_origin,
filter_ops_context_auth_mode=filter_ops_context_auth_mode,
filter_ops_context_jwt_id=filter_ops_context_jwt_id,
filter_ops_context_bearer_token_context_id=filter_ops_context_bearer_token_context_id,
filter_ops_parent_account_id=filter_ops_parent_account_id,
filter_ops_workspace_id=filter_ops_workspace_id,
filter_ops_vault_id=filter_ops_vault_id,
filter_ops_resource_i_ds=filter_ops_resource_i_ds,
filter_ops_action_type=filter_ops_action_type,
filter_ops_resource_type=filter_ops_resource_type,
filter_ops_tags=filter_ops_tags,
filter_ops_response_code=filter_ops_response_code,
filter_ops_start_time=filter_ops_start_time,
filter_ops_end_time=filter_ops_end_time,
filter_ops_api_name=filter_ops_api_name,
filter_ops_response_message=filter_ops_response_message,
filter_ops_http_method=filter_ops_http_method,
filter_ops_http_uri=filter_ops_http_uri,
sort_ops_sort_by=sort_ops_sort_by,
sort_ops_order_by=sort_ops_order_by,
after_ops_timestamp=after_ops_timestamp,
after_ops_change_id=after_ops_change_id,
limit=limit,
offset=offset,
request_options=request_options,
)
return _response.data