pangea-sdk 6.1.0__py3-none-any.whl → 6.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pangea/__init__.py +1 -1
- pangea/asyncio/request.py +1 -1
- pangea/asyncio/services/audit.py +6 -6
- pangea/asyncio/services/authn.py +21 -21
- pangea/asyncio/services/authz.py +6 -6
- pangea/asyncio/services/file_scan.py +1 -1
- pangea/asyncio/services/redact.py +3 -3
- pangea/asyncio/services/vault.py +15 -15
- pangea/request.py +1 -1
- pangea/services/audit/audit.py +6 -6
- pangea/services/authn/authn.py +21 -21
- pangea/services/authz.py +6 -6
- pangea/services/file_scan.py +1 -1
- pangea/services/redact.py +3 -3
- pangea/services/vault/vault.py +15 -15
- {pangea_sdk-6.1.0.dist-info → pangea_sdk-6.1.1.dist-info}/METADATA +4 -4
- {pangea_sdk-6.1.0.dist-info → pangea_sdk-6.1.1.dist-info}/RECORD +18 -18
- {pangea_sdk-6.1.0.dist-info → pangea_sdk-6.1.1.dist-info}/WHEEL +1 -1
pangea/__init__.py
CHANGED
pangea/asyncio/request.py
CHANGED
@@ -61,7 +61,7 @@ class PangeaRequestAsync(PangeaRequestBase):
|
|
61
61
|
data = {}
|
62
62
|
|
63
63
|
# Normalize.
|
64
|
-
data = cast(dict[str, Any], to_jsonable_python(data))
|
64
|
+
data = cast(dict[str, Any], to_jsonable_python(data, exclude_none=True))
|
65
65
|
|
66
66
|
if url is None:
|
67
67
|
url = self._url(endpoint)
|
pangea/asyncio/services/audit.py
CHANGED
@@ -135,7 +135,7 @@ class AuditAsync(ServiceBaseAsync, AuditBase):
|
|
135
135
|
A PangeaResponse where the hash of event data and optional verbose
|
136
136
|
results are returned in the response.result field.
|
137
137
|
Available response fields can be found in our
|
138
|
-
[API documentation](https://pangea.cloud/docs/api/audit
|
138
|
+
[API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
139
139
|
|
140
140
|
Examples:
|
141
141
|
try:
|
@@ -186,7 +186,7 @@ class AuditAsync(ServiceBaseAsync, AuditBase):
|
|
186
186
|
Returns:
|
187
187
|
A PangeaResponse where the hash of event data and optional verbose
|
188
188
|
results are returned in the response.result field.
|
189
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit
|
189
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
190
190
|
|
191
191
|
Examples:
|
192
192
|
response = await audit.log_event({"message": "hello world"}, verbose=True)
|
@@ -222,7 +222,7 @@ class AuditAsync(ServiceBaseAsync, AuditBase):
|
|
222
222
|
Returns:
|
223
223
|
A PangeaResponse where the hash of event data and optional verbose
|
224
224
|
results are returned in the response.result field.
|
225
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit
|
225
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
226
226
|
|
227
227
|
Examples:
|
228
228
|
FIXME:
|
@@ -259,7 +259,7 @@ class AuditAsync(ServiceBaseAsync, AuditBase):
|
|
259
259
|
Returns:
|
260
260
|
A PangeaResponse where the hash of event data and optional verbose
|
261
261
|
results are returned in the response.result field.
|
262
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit
|
262
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
263
263
|
|
264
264
|
Examples:
|
265
265
|
FIXME:
|
@@ -328,8 +328,8 @@ class AuditAsync(ServiceBaseAsync, AuditBase):
|
|
328
328
|
|
329
329
|
Returns:
|
330
330
|
A PangeaResponse[SearchOutput] where the first page of matched events is returned in the
|
331
|
-
response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit
|
332
|
-
Pagination can be found in the [search results endpoint](https://pangea.cloud/docs/api/audit
|
331
|
+
response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/results-post).
|
332
|
+
Pagination can be found in the [search results endpoint](https://pangea.cloud/docs/api/audit#/v1/download_results-post).
|
333
333
|
|
334
334
|
Examples:
|
335
335
|
response: PangeaResponse[SearchOutput] = audit.search(query="message:test", search_restriction={'source': ["monitor"]}, limit=1, verify_consistency=True, verify_events=True)
|
pangea/asyncio/services/authn.py
CHANGED
@@ -127,7 +127,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
127
127
|
Returns:
|
128
128
|
A PangeaResponse with a list of sessions in the response.result field.
|
129
129
|
Available response fields can be found in our
|
130
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/session/list).
|
130
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/session/list-post).
|
131
131
|
|
132
132
|
Examples:
|
133
133
|
response = authn.session.list()
|
@@ -192,7 +192,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
192
192
|
Returns:
|
193
193
|
A PangeaResponse with credentials for a login session in the response.result field.
|
194
194
|
Available response fields can be found in our
|
195
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/client/userinfo).
|
195
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/client/userinfo-post).
|
196
196
|
|
197
197
|
Examples:
|
198
198
|
response = authn.client.userinfo(
|
@@ -217,7 +217,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
217
217
|
Returns:
|
218
218
|
A PangeaResponse with jwt verification keys in the response.result field.
|
219
219
|
Available response fields can be found in our
|
220
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/jwt#/v2/client/jwks).
|
220
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/jwt#/v2/client/jwks-post).
|
221
221
|
|
222
222
|
Examples:
|
223
223
|
response = authn.client.jwks()
|
@@ -290,7 +290,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
290
290
|
Returns:
|
291
291
|
A PangeaResponse with a list of sessions in the response.result field.
|
292
292
|
Available response fields can be found in our
|
293
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/list).
|
293
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/list-post).
|
294
294
|
|
295
295
|
Examples:
|
296
296
|
response = authn.client.session.list(
|
@@ -348,7 +348,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
348
348
|
Returns:
|
349
349
|
A PangeaResponse with credentials for a login session in the response.result field.
|
350
350
|
Available response fields can be found in our
|
351
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/refresh).
|
351
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/refresh-post).
|
352
352
|
|
353
353
|
Examples:
|
354
354
|
response = authn.client.session.refresh(
|
@@ -446,7 +446,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
446
446
|
Returns:
|
447
447
|
A PangeaResponse with a token and its information in the response.result field.
|
448
448
|
Available response fields can be found in our
|
449
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/client/token/check).
|
449
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/client/token/check-post).
|
450
450
|
|
451
451
|
Examples:
|
452
452
|
response = authn.client.token_endpoints.check(
|
@@ -494,7 +494,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
494
494
|
Returns:
|
495
495
|
A PangeaResponse with a user and its information in the response.result field.
|
496
496
|
Available response fields can be found in our
|
497
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/create).
|
497
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/create-post).
|
498
498
|
|
499
499
|
Examples:
|
500
500
|
response = authn.user.create(
|
@@ -563,7 +563,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
563
563
|
Returns:
|
564
564
|
A PangeaResponse with a pending user invitation in the response.result field.
|
565
565
|
Available response fields can be found in our
|
566
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite).
|
566
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite-post).
|
567
567
|
|
568
568
|
Examples:
|
569
569
|
response = authn.user.invite(
|
@@ -608,7 +608,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
608
608
|
Returns:
|
609
609
|
A PangeaResponse with a user and its information in the response.result field.
|
610
610
|
Available response fields can be found in our
|
611
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/update).
|
611
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/update-post).
|
612
612
|
|
613
613
|
Examples:
|
614
614
|
response = authn.user.update(
|
@@ -652,7 +652,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
652
652
|
Returns:
|
653
653
|
A PangeaResponse with a list of users in the response.result field.
|
654
654
|
Available response fields can be found in our
|
655
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/list).
|
655
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/list-post).
|
656
656
|
|
657
657
|
Examples:
|
658
658
|
response = authn.user.list()
|
@@ -705,7 +705,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
705
705
|
Returns:
|
706
706
|
A PangeaResponse with a list of pending user invitations in the response.result field.
|
707
707
|
Available response fields can be found in our
|
708
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite/list).
|
708
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite/list-post).
|
709
709
|
Examples:
|
710
710
|
response = authn.user.invites.list()
|
711
711
|
"""
|
@@ -809,7 +809,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
809
809
|
Returns:
|
810
810
|
A PangeaResponse with a list of authenticators in the response.result field.
|
811
811
|
Available response fields can be found in our
|
812
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/authenticators/list).
|
812
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/authenticators/list-post).
|
813
813
|
|
814
814
|
Examples:
|
815
815
|
response = authn.user.authenticators.list(
|
@@ -852,7 +852,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
852
852
|
Returns:
|
853
853
|
A PangeaResponse with a user and its information in the response.result field.
|
854
854
|
Available response fields can be found in our
|
855
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/get).
|
855
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/get-post).
|
856
856
|
|
857
857
|
Examples:
|
858
858
|
response = authn.user.profile.get(
|
@@ -888,7 +888,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
888
888
|
Returns:
|
889
889
|
A PangeaResponse with a user and its information in the response.result field.
|
890
890
|
Available response fields can be found in our
|
891
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/update).
|
891
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/update-post).
|
892
892
|
|
893
893
|
Examples:
|
894
894
|
response = authn.user.profile.update(
|
@@ -982,7 +982,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
982
982
|
Returns:
|
983
983
|
A PangeaResponse with credentials for a login session in the response.result field.
|
984
984
|
Available response fields can be found in our
|
985
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/complete).
|
985
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/complete-post).
|
986
986
|
|
987
987
|
Examples:
|
988
988
|
response = authn.flow.complete(
|
@@ -1013,7 +1013,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1013
1013
|
A PangeaResponse with information about next steps needed
|
1014
1014
|
to complete a flow in the response.result field.
|
1015
1015
|
Available response fields can be found in our
|
1016
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/restart).
|
1016
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/restart-post).
|
1017
1017
|
|
1018
1018
|
Examples:
|
1019
1019
|
response = authn.flow.restart(
|
@@ -1052,7 +1052,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1052
1052
|
A PangeaResponse with information about next steps needed
|
1053
1053
|
to complete a flow in the response.result field.
|
1054
1054
|
Available response fields can be found in our
|
1055
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/start).
|
1055
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/start-post).
|
1056
1056
|
|
1057
1057
|
Examples:
|
1058
1058
|
response = authn.flow.start(
|
@@ -1086,7 +1086,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1086
1086
|
A PangeaResponse with information about next steps needed
|
1087
1087
|
to complete a flow in the response.result field.
|
1088
1088
|
Available response fields can be found in our
|
1089
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/update).
|
1089
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/update-post).
|
1090
1090
|
|
1091
1091
|
Examples:
|
1092
1092
|
response = authn.flow.update(
|
@@ -1133,7 +1133,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1133
1133
|
Returns:
|
1134
1134
|
A PangeaResponse with a EULA object in the response.result field.
|
1135
1135
|
Available response fields can be found in our
|
1136
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/create).
|
1136
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/create-post).
|
1137
1137
|
|
1138
1138
|
Examples:
|
1139
1139
|
response = authn.agreements.create(
|
@@ -1200,7 +1200,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1200
1200
|
Returns:
|
1201
1201
|
A PangeaResponse with a list of EULA objects in the response.result field.
|
1202
1202
|
Available response fields can be found in our
|
1203
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/list).
|
1203
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/list-post).
|
1204
1204
|
|
1205
1205
|
Examples:
|
1206
1206
|
response = authn.agreements.list()
|
@@ -1238,7 +1238,7 @@ class AuthNAsync(ServiceBaseAsync):
|
|
1238
1238
|
Returns:
|
1239
1239
|
A PangeaResponse with the updated EULA object in the response.result field.
|
1240
1240
|
Available response fields can be found in our
|
1241
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/update).
|
1241
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/update-post).
|
1242
1242
|
|
1243
1243
|
Examples:
|
1244
1244
|
response = authn.agreements.update(
|
pangea/asyncio/services/authz.py
CHANGED
@@ -88,7 +88,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
88
88
|
Returns:
|
89
89
|
Pangea Response with empty result.
|
90
90
|
Available response fields can be found in our
|
91
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/create).
|
91
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/create-post).
|
92
92
|
|
93
93
|
Examples:
|
94
94
|
await authz.tuple_create(
|
@@ -134,7 +134,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
134
134
|
Returns:
|
135
135
|
Pangea Response with a list of tuples and the last token.
|
136
136
|
Available response fields can be found in our
|
137
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/list).
|
137
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/list-post).
|
138
138
|
|
139
139
|
Examples:
|
140
140
|
await authz.tuple_list(TupleListFilter(subject_type="user", subject_id="user_1"))
|
@@ -158,7 +158,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
158
158
|
Returns:
|
159
159
|
Pangea Response with empty result.
|
160
160
|
Available response fields can be found in our
|
161
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/delete).
|
161
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/delete-post).
|
162
162
|
|
163
163
|
Examples:
|
164
164
|
await authz.tuple_delete(
|
@@ -202,7 +202,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
202
202
|
Returns:
|
203
203
|
Pangea Response with the result of the check.
|
204
204
|
Available response fields can be found in our
|
205
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/check).
|
205
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/check-post).
|
206
206
|
|
207
207
|
Examples:
|
208
208
|
await authz.check(
|
@@ -236,7 +236,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
236
236
|
Returns:
|
237
237
|
Pangea Response with a list of resource IDs.
|
238
238
|
Available response fields can be found in our
|
239
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-resources).
|
239
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-resources-post).
|
240
240
|
|
241
241
|
Examples:
|
242
242
|
await authz.list_resources(
|
@@ -270,7 +270,7 @@ class AuthZAsync(ServiceBaseAsync):
|
|
270
270
|
Returns:
|
271
271
|
Pangea Response with a list of subjects.
|
272
272
|
Available response fields can be found in our
|
273
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-subjects).
|
273
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-subjects-post).
|
274
274
|
|
275
275
|
Examples:
|
276
276
|
await authz.list_subjects(
|
@@ -16,7 +16,7 @@ class FileScanAsync(ServiceBaseAsync):
|
|
16
16
|
"""FileScan service client.
|
17
17
|
|
18
18
|
Provides methods to interact with Pangea FileScan Service:
|
19
|
-
https://pangea.cloud/docs/api/
|
19
|
+
https://pangea.cloud/docs/api/file-scan
|
20
20
|
|
21
21
|
The following information is needed:
|
22
22
|
PANGEA_TOKEN - service token which can be found on the Pangea User
|
@@ -92,7 +92,7 @@ class RedactAsync(ServiceBaseAsync):
|
|
92
92
|
Returns:
|
93
93
|
Pangea Response with redacted text in the response.result property,
|
94
94
|
available response fields can be found in our
|
95
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#redact).
|
95
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#redact-post).
|
96
96
|
|
97
97
|
Examples:
|
98
98
|
response = redact.redact(text="Jenny Jenny... 555-867-5309")
|
@@ -151,7 +151,7 @@ class RedactAsync(ServiceBaseAsync):
|
|
151
151
|
Returns:
|
152
152
|
Pangea Response with redacted data in the response.result field,
|
153
153
|
available response fields can be found in our
|
154
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#redact-structured)
|
154
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#redact-structured-post)
|
155
155
|
|
156
156
|
Examples:
|
157
157
|
data = {
|
@@ -196,7 +196,7 @@ class RedactAsync(ServiceBaseAsync):
|
|
196
196
|
Returns:
|
197
197
|
Pangea Response with redacted data in the response.result field,
|
198
198
|
available response fields can be found in our
|
199
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#unredact)
|
199
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#unredact-post)
|
200
200
|
"""
|
201
201
|
input = m.UnredactRequest(redacted_data=redacted_data, fpe_context=fpe_context)
|
202
202
|
return await self.request.post("v1/unredact", m.UnredactResult, data=input.model_dump(exclude_none=True))
|
pangea/asyncio/services/vault.py
CHANGED
@@ -164,7 +164,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
164
164
|
Returns:
|
165
165
|
A PangeaResponse where the id of the deleted secret or key
|
166
166
|
is returned in the response.result field.
|
167
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
167
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/delete-post).
|
168
168
|
|
169
169
|
Raises:
|
170
170
|
PangeaAPIException: If an API Error happens
|
@@ -197,7 +197,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
197
197
|
Returns:
|
198
198
|
A PangeaResponse where the secret or key
|
199
199
|
is returned in the response.result field.
|
200
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
200
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/get-post).
|
201
201
|
|
202
202
|
Raises:
|
203
203
|
PangeaAPIException: If an API Error happens
|
@@ -283,7 +283,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
283
283
|
Returns:
|
284
284
|
A PangeaResponse where a list of secrets or keys
|
285
285
|
is returned in the response.result field.
|
286
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
286
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/list-post).
|
287
287
|
|
288
288
|
Raises:
|
289
289
|
PangeaAPIException: If an API Error happens
|
@@ -345,7 +345,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
345
345
|
Returns:
|
346
346
|
A PangeaResponse where the item ID is returned in the
|
347
347
|
response.result field. Available response fields can be found in our
|
348
|
-
[API documentation](https://pangea.cloud/docs/api/vault
|
348
|
+
[API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/update-post).
|
349
349
|
|
350
350
|
Raises:
|
351
351
|
PangeaAPIException: If an API Error happens
|
@@ -1680,7 +1680,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1680
1680
|
Returns:
|
1681
1681
|
A PangeaResponse where the encrypted message in base64 is returned
|
1682
1682
|
in the response.result field. Available response fields can be found
|
1683
|
-
in our [API documentation](https://pangea.cloud/docs/api/vault
|
1683
|
+
in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/encrypt-post).
|
1684
1684
|
|
1685
1685
|
Raises:
|
1686
1686
|
PangeaAPIException: If an API Error happens
|
@@ -1716,7 +1716,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1716
1716
|
|
1717
1717
|
Returns:
|
1718
1718
|
A PangeaResponse where the decrypted message in base64 is returned
|
1719
|
-
in the response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1719
|
+
in the response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/decrypt-post).
|
1720
1720
|
|
1721
1721
|
Raises:
|
1722
1722
|
PangeaAPIException: If an API Error happens
|
@@ -1750,7 +1750,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1750
1750
|
Returns:
|
1751
1751
|
A PangeaResponse where the signature of the message in base64 is
|
1752
1752
|
returned in the response.result field. Available response fields can
|
1753
|
-
be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1753
|
+
be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/sign-post).
|
1754
1754
|
|
1755
1755
|
Raises:
|
1756
1756
|
PangeaAPIException: If an API Error happens
|
@@ -1788,7 +1788,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1788
1788
|
Returns:
|
1789
1789
|
A PangeaResponse where the signature is valid
|
1790
1790
|
is returned in the response.result field.
|
1791
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1791
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/verify-post).
|
1792
1792
|
|
1793
1793
|
Examples:
|
1794
1794
|
response = await vault.verify(
|
@@ -1826,7 +1826,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1826
1826
|
Returns:
|
1827
1827
|
A PangeaResponse where the signature is valid
|
1828
1828
|
is returned in the response.result field.
|
1829
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1829
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/key/verify/jwt-post).
|
1830
1830
|
|
1831
1831
|
Examples:
|
1832
1832
|
response = await vault.jwt_verify(jws="ewogICJhbGciO...")
|
@@ -1851,7 +1851,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1851
1851
|
Returns:
|
1852
1852
|
A PangeaResponse where the signed JSON Web Token (JWS) is returned
|
1853
1853
|
in the response.result field. Available response fields can be found
|
1854
|
-
in our [API documentation](https://pangea.cloud/docs/api/vault
|
1854
|
+
in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/key/sign/jwt-post).
|
1855
1855
|
|
1856
1856
|
Examples:
|
1857
1857
|
response = await vault.jwt_sign(
|
@@ -1881,7 +1881,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1881
1881
|
Returns:
|
1882
1882
|
A PangeaResponse where the JSON Web Key Set (JWKS) object is
|
1883
1883
|
returned in the response.result field. Available response fields can
|
1884
|
-
be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1884
|
+
be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/get/jwk-post).
|
1885
1885
|
|
1886
1886
|
Examples:
|
1887
1887
|
response = await vault.jwk_get("pvi_p6g5i3gtbvqvc3u6zugab6qs6r63tqf5")
|
@@ -1913,7 +1913,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
1913
1913
|
Returns:
|
1914
1914
|
A PangeaResponse where the state change object is returned in the
|
1915
1915
|
response.result field. Available response fields can be found in our
|
1916
|
-
[API documentation](https://pangea.cloud/docs/api/vault
|
1916
|
+
[API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/state/change-post).
|
1917
1917
|
|
1918
1918
|
Raises:
|
1919
1919
|
PangeaAPIException: If an API Error happens
|
@@ -2014,7 +2014,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
2014
2014
|
Returns:
|
2015
2015
|
A `PangeaResponse` where the encrypted object is returned in the
|
2016
2016
|
`response.result` field. Available response fields can be found in
|
2017
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2017
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/encrypt/structured-post).
|
2018
2018
|
|
2019
2019
|
Raises:
|
2020
2020
|
PangeaAPIException: If an API error happens.
|
@@ -2070,7 +2070,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
2070
2070
|
Returns:
|
2071
2071
|
A `PangeaResponse` where the decrypted object is returned in the
|
2072
2072
|
`response.result` field. Available response fields can be found in
|
2073
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2073
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/decrypt/structured-post).
|
2074
2074
|
|
2075
2075
|
Examples:
|
2076
2076
|
data = {"field1": [1, 2, "kxcbC9E9IlgVaSCChPWUMgUC3ko=", "6FfI/LCzatLRLNAc8SuBK/TDnGxp"], "field2": "data2"}
|
@@ -2214,7 +2214,7 @@ class VaultAsync(ServiceBaseAsync):
|
|
2214
2214
|
Returns:
|
2215
2215
|
A `PangeaResponse` where the exported key is returned in the
|
2216
2216
|
`response.result` field. Available response fields can be found in
|
2217
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2217
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/export-post).
|
2218
2218
|
|
2219
2219
|
Raises:
|
2220
2220
|
PangeaAPIException: If an API error happens.
|
pangea/request.py
CHANGED
@@ -231,7 +231,7 @@ class PangeaRequest(PangeaRequestBase):
|
|
231
231
|
data = {}
|
232
232
|
|
233
233
|
# Normalize.
|
234
|
-
data = cast(dict[str, Any], to_jsonable_python(data))
|
234
|
+
data = cast(dict[str, Any], to_jsonable_python(data, exclude_none=True))
|
235
235
|
|
236
236
|
if url is None:
|
237
237
|
url = self._url(endpoint)
|
pangea/services/audit/audit.py
CHANGED
@@ -457,7 +457,7 @@ class Audit(ServiceBase, AuditBase):
|
|
457
457
|
A PangeaResponse where the hash of event data and optional verbose
|
458
458
|
results are returned in the response.result field.
|
459
459
|
Available response fields can be found in our
|
460
|
-
[API documentation](https://pangea.cloud/docs/api/audit#/v1/log).
|
460
|
+
[API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
461
461
|
|
462
462
|
Examples:
|
463
463
|
log_response = audit.log(
|
@@ -505,7 +505,7 @@ class Audit(ServiceBase, AuditBase):
|
|
505
505
|
Returns:
|
506
506
|
A PangeaResponse where the hash of event data and optional verbose
|
507
507
|
results are returned in the response.result field.
|
508
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/log).
|
508
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/log-post).
|
509
509
|
|
510
510
|
Examples:
|
511
511
|
response = audit.log_event({"message": "hello world"}, verbose=True)
|
@@ -543,7 +543,7 @@ class Audit(ServiceBase, AuditBase):
|
|
543
543
|
Returns:
|
544
544
|
A PangeaResponse where the hash of event data and optional verbose
|
545
545
|
results are returned in the response.result field.
|
546
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v2/log).
|
546
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v2/log-post).
|
547
547
|
|
548
548
|
Examples:
|
549
549
|
log_response = audit.log_bulk(
|
@@ -584,7 +584,7 @@ class Audit(ServiceBase, AuditBase):
|
|
584
584
|
Returns:
|
585
585
|
A PangeaResponse where the hash of event data and optional verbose
|
586
586
|
results are returned in the response.result field.
|
587
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v2/log_async).
|
587
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v2/log_async-post).
|
588
588
|
|
589
589
|
Examples:
|
590
590
|
log_response = audit.log_bulk_async(
|
@@ -659,8 +659,8 @@ class Audit(ServiceBase, AuditBase):
|
|
659
659
|
|
660
660
|
Returns:
|
661
661
|
A PangeaResponse[SearchOutput] where the first page of matched events is returned in the
|
662
|
-
response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/search).
|
663
|
-
Pagination can be found in the [search results endpoint](https://pangea.cloud/docs/api/audit#/v1/results).
|
662
|
+
response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/audit#/v1/search-post).
|
663
|
+
Pagination can be found in the [search results endpoint](https://pangea.cloud/docs/api/audit#/v1/results-post).
|
664
664
|
|
665
665
|
Examples:
|
666
666
|
response = audit.search(
|
pangea/services/authn/authn.py
CHANGED
@@ -128,7 +128,7 @@ class AuthN(ServiceBase):
|
|
128
128
|
Returns:
|
129
129
|
A PangeaResponse with a list of sessions in the response.result field.
|
130
130
|
Available response fields can be found in our
|
131
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/session/list).
|
131
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/session/list-post).
|
132
132
|
|
133
133
|
Examples:
|
134
134
|
response = authn.session.list()
|
@@ -192,7 +192,7 @@ class AuthN(ServiceBase):
|
|
192
192
|
Returns:
|
193
193
|
A PangeaResponse with credentials for a login session in the response.result field.
|
194
194
|
Available response fields can be found in our
|
195
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/client/userinfo).
|
195
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/client/userinfo-post).
|
196
196
|
|
197
197
|
Examples:
|
198
198
|
response = authn.client.userinfo(
|
@@ -217,7 +217,7 @@ class AuthN(ServiceBase):
|
|
217
217
|
Returns:
|
218
218
|
A PangeaResponse with jwt verification keys in the response.result field.
|
219
219
|
Available response fields can be found in our
|
220
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/jwt#/v2/client/jwks).
|
220
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/jwt#/v2/client/jwks-post).
|
221
221
|
|
222
222
|
Examples:
|
223
223
|
response = authn.client.jwks()
|
@@ -290,7 +290,7 @@ class AuthN(ServiceBase):
|
|
290
290
|
Returns:
|
291
291
|
A PangeaResponse with a list of sessions in the response.result field.
|
292
292
|
Available response fields can be found in our
|
293
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/list).
|
293
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/list-post).
|
294
294
|
|
295
295
|
Examples:
|
296
296
|
response = authn.client.session.list(
|
@@ -349,7 +349,7 @@ class AuthN(ServiceBase):
|
|
349
349
|
Returns:
|
350
350
|
A PangeaResponse with credentials for a login session in the response.result field.
|
351
351
|
Available response fields can be found in our
|
352
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/refresh).
|
352
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/session#/v2/client/session/refresh-post).
|
353
353
|
|
354
354
|
Examples:
|
355
355
|
response = authn.client.session.refresh(
|
@@ -447,7 +447,7 @@ class AuthN(ServiceBase):
|
|
447
447
|
Returns:
|
448
448
|
A PangeaResponse with a token and its information in the response.result field.
|
449
449
|
Available response fields can be found in our
|
450
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/client/token/check).
|
450
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/client/token/check-post).
|
451
451
|
|
452
452
|
Examples:
|
453
453
|
response = authn.client.token_endpoints.check(
|
@@ -496,7 +496,7 @@ class AuthN(ServiceBase):
|
|
496
496
|
Returns:
|
497
497
|
A PangeaResponse with a user and its information in the response.result field.
|
498
498
|
Available response fields can be found in our
|
499
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/create).
|
499
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/create-post).
|
500
500
|
|
501
501
|
Examples:
|
502
502
|
response = authn.user.create(
|
@@ -561,7 +561,7 @@ class AuthN(ServiceBase):
|
|
561
561
|
Returns:
|
562
562
|
A PangeaResponse with a pending user invitation in the response.result field.
|
563
563
|
Available response fields can be found in our
|
564
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite).
|
564
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite-post).
|
565
565
|
|
566
566
|
Examples:
|
567
567
|
response = authn.user.invite(
|
@@ -606,7 +606,7 @@ class AuthN(ServiceBase):
|
|
606
606
|
Returns:
|
607
607
|
A PangeaResponse with a user and its information in the response.result field.
|
608
608
|
Available response fields can be found in our
|
609
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/update).
|
609
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/update-post).
|
610
610
|
|
611
611
|
Examples:
|
612
612
|
response = authn.user.update(
|
@@ -649,7 +649,7 @@ class AuthN(ServiceBase):
|
|
649
649
|
Returns:
|
650
650
|
A PangeaResponse with a list of users in the response.result field.
|
651
651
|
Available response fields can be found in our
|
652
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/list).
|
652
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/list-post).
|
653
653
|
|
654
654
|
Examples:
|
655
655
|
response = authn.user.list()
|
@@ -703,7 +703,7 @@ class AuthN(ServiceBase):
|
|
703
703
|
Returns:
|
704
704
|
A PangeaResponse with a list of pending user invitations in the response.result field.
|
705
705
|
Available response fields can be found in our
|
706
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite/list).
|
706
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/invite#/v2/user/invite/list-post).
|
707
707
|
Examples:
|
708
708
|
response = authn.user.invites.list()
|
709
709
|
"""
|
@@ -807,7 +807,7 @@ class AuthN(ServiceBase):
|
|
807
807
|
Returns:
|
808
808
|
A PangeaResponse with a list of authenticators in the response.result field.
|
809
809
|
Available response fields can be found in our
|
810
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/authenticators/list).
|
810
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/authenticators/list-post).
|
811
811
|
|
812
812
|
Examples:
|
813
813
|
response = authn.user.authenticators.list(
|
@@ -850,7 +850,7 @@ class AuthN(ServiceBase):
|
|
850
850
|
Returns:
|
851
851
|
A PangeaResponse with a user and its information in the response.result field.
|
852
852
|
Available response fields can be found in our
|
853
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/get).
|
853
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/get-post).
|
854
854
|
|
855
855
|
Examples:
|
856
856
|
response = authn.user.profile.get(
|
@@ -886,7 +886,7 @@ class AuthN(ServiceBase):
|
|
886
886
|
Returns:
|
887
887
|
A PangeaResponse with a user and its information in the response.result field.
|
888
888
|
Available response fields can be found in our
|
889
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/update).
|
889
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/user#/v2/user/profile/update-post).
|
890
890
|
|
891
891
|
Examples:
|
892
892
|
response = authn.user.profile.update(
|
@@ -980,7 +980,7 @@ class AuthN(ServiceBase):
|
|
980
980
|
Returns:
|
981
981
|
A PangeaResponse with credentials for a login session in the response.result field.
|
982
982
|
Available response fields can be found in our
|
983
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/complete).
|
983
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/complete-post).
|
984
984
|
|
985
985
|
Examples:
|
986
986
|
response = authn.flow.complete(
|
@@ -1009,7 +1009,7 @@ class AuthN(ServiceBase):
|
|
1009
1009
|
A PangeaResponse with information about next steps needed
|
1010
1010
|
to complete a flow in the response.result field.
|
1011
1011
|
Available response fields can be found in our
|
1012
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/restart).
|
1012
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/restart-post).
|
1013
1013
|
|
1014
1014
|
Examples:
|
1015
1015
|
response = authn.flow.restart(
|
@@ -1046,7 +1046,7 @@ class AuthN(ServiceBase):
|
|
1046
1046
|
A PangeaResponse with information about next steps needed
|
1047
1047
|
to complete a flow in the response.result field.
|
1048
1048
|
Available response fields can be found in our
|
1049
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/start).
|
1049
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/start-post).
|
1050
1050
|
|
1051
1051
|
Examples:
|
1052
1052
|
response = authn.flow.start(
|
@@ -1080,7 +1080,7 @@ class AuthN(ServiceBase):
|
|
1080
1080
|
A PangeaResponse with information about next steps needed
|
1081
1081
|
to complete a flow in the response.result field.
|
1082
1082
|
Available response fields can be found in our
|
1083
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/update).
|
1083
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/flow#/v2/flow/update-post).
|
1084
1084
|
|
1085
1085
|
Examples:
|
1086
1086
|
response = authn.flow.update(
|
@@ -1125,7 +1125,7 @@ class AuthN(ServiceBase):
|
|
1125
1125
|
Returns:
|
1126
1126
|
A PangeaResponse with a EULA object in the response.result field.
|
1127
1127
|
Available response fields can be found in our
|
1128
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/create).
|
1128
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/create-post).
|
1129
1129
|
|
1130
1130
|
Examples:
|
1131
1131
|
response = authn.agreements.create(
|
@@ -1192,7 +1192,7 @@ class AuthN(ServiceBase):
|
|
1192
1192
|
Returns:
|
1193
1193
|
A PangeaResponse with a list of EULA objects in the response.result field.
|
1194
1194
|
Available response fields can be found in our
|
1195
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/list).
|
1195
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/list-post).
|
1196
1196
|
|
1197
1197
|
Examples:
|
1198
1198
|
response = authn.agreements.list()
|
@@ -1231,7 +1231,7 @@ class AuthN(ServiceBase):
|
|
1231
1231
|
Returns:
|
1232
1232
|
A PangeaResponse with the updated EULA object in the response.result field.
|
1233
1233
|
Available response fields can be found in our
|
1234
|
-
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/update).
|
1234
|
+
[API Documentation](https://pangea.cloud/docs/api/authn/agreements#/v2/agreements/update-post).
|
1235
1235
|
|
1236
1236
|
Examples:
|
1237
1237
|
response = authn.agreements.update(
|
pangea/services/authz.py
CHANGED
@@ -243,7 +243,7 @@ class AuthZ(ServiceBase):
|
|
243
243
|
Returns:
|
244
244
|
Pangea Response with empty result.
|
245
245
|
Available response fields can be found in our
|
246
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/create).
|
246
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/create-post).
|
247
247
|
|
248
248
|
Examples:
|
249
249
|
response = authz.tuple_create(
|
@@ -287,7 +287,7 @@ class AuthZ(ServiceBase):
|
|
287
287
|
Returns:
|
288
288
|
Pangea Response with a list of tuples and the last token.
|
289
289
|
Available response fields can be found in our
|
290
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/list).
|
290
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/list-post).
|
291
291
|
|
292
292
|
Examples:
|
293
293
|
authz.tuple_list(TupleListFilter(subject_type="user", subject_id="user_1"))
|
@@ -311,7 +311,7 @@ class AuthZ(ServiceBase):
|
|
311
311
|
Returns:
|
312
312
|
Pangea Response with empty result.
|
313
313
|
Available response fields can be found in our
|
314
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/delete).
|
314
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/tuple/delete-post).
|
315
315
|
|
316
316
|
Examples:
|
317
317
|
response = authz.tuple_delete(
|
@@ -353,7 +353,7 @@ class AuthZ(ServiceBase):
|
|
353
353
|
Returns:
|
354
354
|
Pangea Response with the result of the check.
|
355
355
|
Available response fields can be found in our
|
356
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/check).
|
356
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/check-post).
|
357
357
|
|
358
358
|
Examples:
|
359
359
|
response = authz.check(
|
@@ -387,7 +387,7 @@ class AuthZ(ServiceBase):
|
|
387
387
|
Returns:
|
388
388
|
Pangea Response with a list of resource IDs.
|
389
389
|
Available response fields can be found in our
|
390
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-resources).
|
390
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-resources-post).
|
391
391
|
|
392
392
|
Examples:
|
393
393
|
authz.list_resources(
|
@@ -422,7 +422,7 @@ class AuthZ(ServiceBase):
|
|
422
422
|
Returns:
|
423
423
|
Pangea Response with a list of subjects.
|
424
424
|
Available response fields can be found in our
|
425
|
-
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-subjects).
|
425
|
+
[API Documentation](https://pangea.cloud/docs/api/authz#/v1/list-subjects-post).
|
426
426
|
|
427
427
|
Examples:
|
428
428
|
response = authz.list_subjects(
|
pangea/services/file_scan.py
CHANGED
@@ -52,7 +52,7 @@ class FileScan(ServiceBase):
|
|
52
52
|
"""FileScan service client.
|
53
53
|
|
54
54
|
Provides methods to interact with Pangea FileScan Service:
|
55
|
-
https://pangea.cloud/docs/api/
|
55
|
+
https://pangea.cloud/docs/api/file-scan
|
56
56
|
|
57
57
|
The following information is needed:
|
58
58
|
PANGEA_TOKEN - service token which can be found on the Pangea User
|
pangea/services/redact.py
CHANGED
@@ -276,7 +276,7 @@ class Redact(ServiceBase):
|
|
276
276
|
Returns:
|
277
277
|
Pangea Response with redacted text in the response.result property,
|
278
278
|
available response fields can be found in our
|
279
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#redact).
|
279
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#redact-post).
|
280
280
|
|
281
281
|
Examples:
|
282
282
|
response = redact.redact(text="Jenny Jenny... 555-867-5309")
|
@@ -335,7 +335,7 @@ class Redact(ServiceBase):
|
|
335
335
|
Returns:
|
336
336
|
Pangea Response with redacted data in the response.result field,
|
337
337
|
available response fields can be found in our
|
338
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#redact-structured)
|
338
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#redact-structured-post)
|
339
339
|
|
340
340
|
Examples:
|
341
341
|
data = {
|
@@ -378,7 +378,7 @@ class Redact(ServiceBase):
|
|
378
378
|
Returns:
|
379
379
|
Pangea Response with redacted data in the response.result field,
|
380
380
|
available response fields can be found in our
|
381
|
-
[API Documentation](https://pangea.cloud/docs/api/redact#unredact)
|
381
|
+
[API Documentation](https://pangea.cloud/docs/api/redact#unredact-post)
|
382
382
|
"""
|
383
383
|
input = UnredactRequest(redacted_data=redacted_data, fpe_context=fpe_context)
|
384
384
|
return self.request.post("v1/unredact", UnredactResult, data=input.model_dump(exclude_none=True))
|
pangea/services/vault/vault.py
CHANGED
@@ -164,7 +164,7 @@ class Vault(ServiceBase):
|
|
164
164
|
Returns:
|
165
165
|
A PangeaResponse where the id of the deleted secret or key
|
166
166
|
is returned in the response.result field.
|
167
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
167
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/delete-post).
|
168
168
|
|
169
169
|
Raises:
|
170
170
|
PangeaAPIException: If an API Error happens
|
@@ -197,7 +197,7 @@ class Vault(ServiceBase):
|
|
197
197
|
Returns:
|
198
198
|
A PangeaResponse where the secret or key
|
199
199
|
is returned in the response.result field.
|
200
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
200
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/get-post).
|
201
201
|
|
202
202
|
Raises:
|
203
203
|
PangeaAPIException: If an API Error happens
|
@@ -285,7 +285,7 @@ class Vault(ServiceBase):
|
|
285
285
|
Returns:
|
286
286
|
A PangeaResponse where a list of secrets or keys
|
287
287
|
is returned in the response.result field.
|
288
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
288
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/list-post).
|
289
289
|
|
290
290
|
Examples:
|
291
291
|
response = vault.list(
|
@@ -344,7 +344,7 @@ class Vault(ServiceBase):
|
|
344
344
|
Returns:
|
345
345
|
A PangeaResponse where the item ID is returned in the
|
346
346
|
response.result field. Available response fields can be found in our
|
347
|
-
[API documentation](https://pangea.cloud/docs/api/vault
|
347
|
+
[API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/update-post).
|
348
348
|
|
349
349
|
Raises:
|
350
350
|
PangeaAPIException: If an API Error happens
|
@@ -1679,7 +1679,7 @@ class Vault(ServiceBase):
|
|
1679
1679
|
Returns:
|
1680
1680
|
A PangeaResponse where the encrypted message in base64 is returned
|
1681
1681
|
in the response.result field. Available response fields can be found
|
1682
|
-
in our [API documentation](https://pangea.cloud/docs/api/vault
|
1682
|
+
in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/encrypt-post).
|
1683
1683
|
|
1684
1684
|
Raises:
|
1685
1685
|
PangeaAPIException: If an API Error happens
|
@@ -1715,7 +1715,7 @@ class Vault(ServiceBase):
|
|
1715
1715
|
|
1716
1716
|
Returns:
|
1717
1717
|
A PangeaResponse where the decrypted message in base64 is returned
|
1718
|
-
in the response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1718
|
+
in the response.result field. Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/decrypt-post).
|
1719
1719
|
|
1720
1720
|
Raises:
|
1721
1721
|
PangeaAPIException: If an API Error happens
|
@@ -1749,7 +1749,7 @@ class Vault(ServiceBase):
|
|
1749
1749
|
Returns:
|
1750
1750
|
A PangeaResponse where the signature of the message in base64 is
|
1751
1751
|
returned in the response.result field. Available response fields can
|
1752
|
-
be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1752
|
+
be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/sign-post).
|
1753
1753
|
|
1754
1754
|
Raises:
|
1755
1755
|
PangeaAPIException: If an API Error happens
|
@@ -1785,7 +1785,7 @@ class Vault(ServiceBase):
|
|
1785
1785
|
Returns:
|
1786
1786
|
A PangeaResponse where the signature is valid
|
1787
1787
|
is returned in the response.result field.
|
1788
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1788
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/verify-post).
|
1789
1789
|
|
1790
1790
|
Examples:
|
1791
1791
|
response = vault.verify(
|
@@ -1823,7 +1823,7 @@ class Vault(ServiceBase):
|
|
1823
1823
|
Returns:
|
1824
1824
|
A PangeaResponse where the signature is valid
|
1825
1825
|
is returned in the response.result field.
|
1826
|
-
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1826
|
+
Available response fields can be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/key/verify/jwt-post).
|
1827
1827
|
|
1828
1828
|
Examples:
|
1829
1829
|
response = vault.jwt_verify(jws="ewogICJhbGciO...")
|
@@ -1848,7 +1848,7 @@ class Vault(ServiceBase):
|
|
1848
1848
|
Returns:
|
1849
1849
|
A PangeaResponse where the signed JSON Web Token (JWS) is returned
|
1850
1850
|
in the response.result field. Available response fields can be found
|
1851
|
-
in our [API documentation](https://pangea.cloud/docs/api/vault
|
1851
|
+
in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/key/sign/jwt-post).
|
1852
1852
|
|
1853
1853
|
Examples:
|
1854
1854
|
response = vault.jwt_sign(
|
@@ -1878,7 +1878,7 @@ class Vault(ServiceBase):
|
|
1878
1878
|
Returns:
|
1879
1879
|
A PangeaResponse where the JSON Web Key Set (JWKS) object is
|
1880
1880
|
returned in the response.result field. Available response fields can
|
1881
|
-
be found in our [API documentation](https://pangea.cloud/docs/api/vault
|
1881
|
+
be found in our [API documentation](https://pangea.cloud/docs/api/vault/v1-jwt#/v1/get/jwk-post).
|
1882
1882
|
|
1883
1883
|
Examples:
|
1884
1884
|
response = vault.jwk_get("pvi_p6g5i3gtbvqvc3u6zugab6qs6r63tqf5")
|
@@ -1910,7 +1910,7 @@ class Vault(ServiceBase):
|
|
1910
1910
|
Returns:
|
1911
1911
|
A PangeaResponse where the state change object is returned in the
|
1912
1912
|
response.result field. Available response fields can be found in our
|
1913
|
-
[API documentation](https://pangea.cloud/docs/api/vault
|
1913
|
+
[API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/state/change-post).
|
1914
1914
|
|
1915
1915
|
Raises:
|
1916
1916
|
PangeaAPIException: If an API Error happens
|
@@ -2011,7 +2011,7 @@ class Vault(ServiceBase):
|
|
2011
2011
|
Returns:
|
2012
2012
|
A `PangeaResponse` where the encrypted object is returned in the
|
2013
2013
|
`response.result` field. Available response fields can be found in
|
2014
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2014
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/encrypt/structured-post).
|
2015
2015
|
|
2016
2016
|
Raises:
|
2017
2017
|
PangeaAPIException: If an API error happens.
|
@@ -2067,7 +2067,7 @@ class Vault(ServiceBase):
|
|
2067
2067
|
Returns:
|
2068
2068
|
A `PangeaResponse` where the decrypted object is returned in the
|
2069
2069
|
`response.result` field. Available response fields can be found in
|
2070
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2070
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-keys#/v1/key/decrypt/structured-post).
|
2071
2071
|
|
2072
2072
|
Examples:
|
2073
2073
|
data = {"field1": [1, 2, "kxcbC9E9IlgVaSCChPWUMgUC3ko=", "6FfI/LCzatLRLNAc8SuBK/TDnGxp"], "field2": "data2"}
|
@@ -2211,7 +2211,7 @@ class Vault(ServiceBase):
|
|
2211
2211
|
Returns:
|
2212
2212
|
A `PangeaResponse` where the exported key is returned in the
|
2213
2213
|
`response.result` field. Available response fields can be found in
|
2214
|
-
our [API documentation](https://pangea.cloud/docs/api/vault
|
2214
|
+
our [API documentation](https://pangea.cloud/docs/api/vault/v1-general#/v1/export-post).
|
2215
2215
|
|
2216
2216
|
Raises:
|
2217
2217
|
PangeaAPIException: If an API error happens.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pangea-sdk
|
3
|
-
Version: 6.1.
|
3
|
+
Version: 6.1.1
|
4
4
|
Summary: Pangea API SDK
|
5
5
|
License: MIT
|
6
6
|
Keywords: Pangea,SDK,Audit
|
@@ -9,11 +9,11 @@ Author-email: glenn.gallien@pangea.cloud
|
|
9
9
|
Requires-Python: >=3.9.2,<4.0.0
|
10
10
|
Classifier: Topic :: Software Development
|
11
11
|
Classifier: Topic :: Software Development :: Libraries
|
12
|
-
Requires-Dist: aiohttp (>=3.11.
|
13
|
-
Requires-Dist: cryptography (>=44.0.
|
12
|
+
Requires-Dist: aiohttp (>=3.11.18,<4.0.0)
|
13
|
+
Requires-Dist: cryptography (>=44.0.3,<44.0.4)
|
14
14
|
Requires-Dist: deprecated (>=1.2.18,<2.0.0)
|
15
15
|
Requires-Dist: google-crc32c (>=1.7.1,<2.0.0)
|
16
|
-
Requires-Dist: pydantic (>=2.11.
|
16
|
+
Requires-Dist: pydantic (>=2.11.4,<3.0.0)
|
17
17
|
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
18
18
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
19
19
|
Requires-Dist: requests-toolbelt (>=1.0.0,<2.0.0)
|
@@ -1,21 +1,21 @@
|
|
1
|
-
pangea/__init__.py,sha256=
|
1
|
+
pangea/__init__.py,sha256=4r063L50S_8ns4K9xQd4q4RNoY5giqoor2iJjA1M3Xo,246
|
2
2
|
pangea/asyncio/__init__.py,sha256=kjEMkqMQ521LlMSu5jn3_WgweyArwVZ2C-s3x7mR6Pk,45
|
3
3
|
pangea/asyncio/file_uploader.py,sha256=wI7epib7Rc5jtZw4eJ1L1SlmutDG6CPv59C8N2UPhtY,1436
|
4
|
-
pangea/asyncio/request.py,sha256=
|
4
|
+
pangea/asyncio/request.py,sha256=TXBCCDHdjh9z0dWn21Jvj0itlBRzZzrJHarfx7fVAr4,18059
|
5
5
|
pangea/asyncio/services/__init__.py,sha256=L6Tdhjfx_ZECHskhLMPaCcOefi-r-imw6q_zlU4j-FY,464
|
6
6
|
pangea/asyncio/services/ai_guard.py,sha256=rFksT8LQkyioW3QOq4fLCEZbW5SXiYWpWjLbVovRouE,6294
|
7
|
-
pangea/asyncio/services/audit.py,sha256=
|
8
|
-
pangea/asyncio/services/authn.py,sha256=
|
9
|
-
pangea/asyncio/services/authz.py,sha256=
|
7
|
+
pangea/asyncio/services/audit.py,sha256=KPX_wTIidQRUEfek90owO5dCEc1m7OyxsSZMGX6tNF0,26040
|
8
|
+
pangea/asyncio/services/authn.py,sha256=ZZIYu3lM-hP750BY7hAEKb8GGkE2hZUdLQpVq-pRuuI,52205
|
9
|
+
pangea/asyncio/services/authz.py,sha256=3T0D97ACTx7RuGsopglm8G2Bg4GGNgvoAq3o8OP4lRc,9721
|
10
10
|
pangea/asyncio/services/base.py,sha256=vRFVcO_uEAGJte3OUUBLD43RoiiFB1vC7SPyN6yEMoA,3158
|
11
11
|
pangea/asyncio/services/embargo.py,sha256=ctzj3kip6xos-Eu3JuOskrCGYC8T3JlsgAopZHiPSXM,3068
|
12
|
-
pangea/asyncio/services/file_scan.py,sha256=
|
12
|
+
pangea/asyncio/services/file_scan.py,sha256=01vWZztp25At34Zi0soiu5A_hxScsCk3XH3LXvDKoZg,7110
|
13
13
|
pangea/asyncio/services/intel.py,sha256=BcxGKSoZ1nJiEHyZM9yOwKSSPJUrB6ibJ19KR27VlgQ,40261
|
14
14
|
pangea/asyncio/services/prompt_guard.py,sha256=NbYt-0tRtO5VH7kLmC1lJ5JSV-ztlb9dNFaKKs_fZUM,2553
|
15
|
-
pangea/asyncio/services/redact.py,sha256=
|
15
|
+
pangea/asyncio/services/redact.py,sha256=NyreCHuZjNlOjr21V-tOWuqGCVXOx_LnKctSQ9U6iG0,7966
|
16
16
|
pangea/asyncio/services/sanitize.py,sha256=EbSdq_v9yZWce9xEYWvZharE9bJcxw8cg5Pv8LVxdxc,8627
|
17
17
|
pangea/asyncio/services/share.py,sha256=Qd2Oh4UsLwu7Zo4Xy1KABHuP4TJ9AtcN-XzldvilFVo,30773
|
18
|
-
pangea/asyncio/services/vault.py,sha256=
|
18
|
+
pangea/asyncio/services/vault.py,sha256=jkTwsQtoibx_6ob-ykDIjqloeLtyp3e6E2_BYMd9f1I,77369
|
19
19
|
pangea/audit_logger.py,sha256=gRkCfUUT5LDNaycwxkhZUySgY47jDfn1ZeKOul4XCQI,3842
|
20
20
|
pangea/config.py,sha256=Z2WT_UG0qBQzzVzBfloXYFxS21mSg1YXQ36cAVCqrJk,1963
|
21
21
|
pangea/crypto/rsa.py,sha256=mwSiNy571KAGr3F6oEM0CXWkl9D023ch8ldbZZeLj_4,4747
|
@@ -25,24 +25,24 @@ pangea/dump_audit.py,sha256=IevqaUUh7GDepdIW7slSxeZbkPrWIVbcX3sr4DgpJXI,7090
|
|
25
25
|
pangea/exceptions.py,sha256=OBtzUECpNa6vNp8ySkHC-tm4QjFRCOAHBkMHqzAlOu8,5656
|
26
26
|
pangea/file_uploader.py,sha256=4RQ44xt-faApC61nn2PlwHT7XYrJ4GeQA8Ug4tySEAg,1227
|
27
27
|
pangea/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
pangea/request.py,sha256=
|
28
|
+
pangea/request.py,sha256=QyTS3nY4rpmPQ1xEHnj5ND0aPL3x5PIrE4fFOAwyLaM,24708
|
29
29
|
pangea/response.py,sha256=lPAcYsF9Xg166CiyhCofVmQA-W4jevh0MQXxUa8Re68,7737
|
30
30
|
pangea/services/__init__.py,sha256=h36HzyIGaI5kO6l3UCwKHx_Kd-m_9mYVwn5MLRVzblI,408
|
31
31
|
pangea/services/ai_guard.py,sha256=X1DR1JTYZnLqBFFAHgmRk4xqyGF3GQMO1B3_cqLLVfU,15774
|
32
|
-
pangea/services/audit/audit.py,sha256=
|
32
|
+
pangea/services/audit/audit.py,sha256=41GVKkOH3ex8KMi6oOf_mCNwFqICpnoCH8jZpkvReXI,39098
|
33
33
|
pangea/services/audit/exceptions.py,sha256=bhVuYe4ammacOVxwg98CChxvwZf5FKgR2DcgqILOcwc,471
|
34
34
|
pangea/services/audit/models.py,sha256=1h1B9eSYQMYG3f8WNi1UcDX2-impRrET_ErjJYUnj7M,14678
|
35
35
|
pangea/services/audit/signing.py,sha256=5A4hvPtpfP2kMz8bsiiKUACriXbh5dv9gb_rbqiUtuI,5583
|
36
36
|
pangea/services/audit/util.py,sha256=Zq1qvfeplYfhCP_ud5YMvntSB0UvnCdsuYbOzZkHbjg,7620
|
37
|
-
pangea/services/authn/authn.py,sha256=
|
37
|
+
pangea/services/authn/authn.py,sha256=lx_j92WCkyGV9G4EUYIIrhdisNNkSk8zAg-WUSWCErM,51126
|
38
38
|
pangea/services/authn/models.py,sha256=EOoseAWVhr7Gy2HHqxqtvyUNimoi6OVc-x9OMxEeRX8,25253
|
39
|
-
pangea/services/authz.py,sha256=
|
39
|
+
pangea/services/authz.py,sha256=tava276eskCtiz_GwOQQ4HVw71Zbz2xftLWTU8x7DWk,14611
|
40
40
|
pangea/services/base.py,sha256=43pWQcR9CeT4sGzgctF3Sy4M_h7DaUzkuZD2Z7CcDUU,3845
|
41
41
|
pangea/services/embargo.py,sha256=9Wfku4td5ORaIENKmnGmS5jxJJIRfWp6Q51L36Jsy0I,3897
|
42
|
-
pangea/services/file_scan.py,sha256=
|
42
|
+
pangea/services/file_scan.py,sha256=Q0VGzRqBhE7OnrrunX7JQbcVmldybxZN_Trrpeoq4VA,7815
|
43
43
|
pangea/services/intel.py,sha256=y1EX2ctYIxQc52lmHp6-Q_UIDM--t3fOpXDssWiRPfo,56474
|
44
44
|
pangea/services/prompt_guard.py,sha256=Cq8ume2_YPfHre4iN6FYkyTV7NrdwLXlr_wnilfKotE,3446
|
45
|
-
pangea/services/redact.py,sha256=
|
45
|
+
pangea/services/redact.py,sha256=PWIeW2W5lC9DHLdzXBgOInie0AR2aCxmBPUXuAMEkvg,13158
|
46
46
|
pangea/services/sanitize.py,sha256=eAN1HhObiKqygy6HHcfl0NmxYfPMvqSKepwEAVVIIEE,12936
|
47
47
|
pangea/services/share/file_format.py,sha256=1svO1ee_aenA9zoO_AaU-Rk5Ulp7kcPOc_KwNoluyQE,2797
|
48
48
|
pangea/services/share/share.py,sha256=hlhkIr6ScJ5oMFUs9no4HtHNoUEbYU4KoLkiGLxex30,52343
|
@@ -51,10 +51,10 @@ pangea/services/vault/models/common.py,sha256=PSZRFqHTUtEMJJGwywEFM2AU3aV8S-sbco
|
|
51
51
|
pangea/services/vault/models/keys.py,sha256=duAuTiOby_D7MloRvN4gNj0P-b-jx9sdtplAWFxsShw,2786
|
52
52
|
pangea/services/vault/models/secret.py,sha256=ItGdkulM-SEySfcm4a5yGxMvo_omjC7kChv6gdbFnn8,1142
|
53
53
|
pangea/services/vault/models/symmetric.py,sha256=t8xCM1wGGKDBpOqTggFueO4-4-2IFmyxqcs7_PDr7U0,2562
|
54
|
-
pangea/services/vault/vault.py,sha256=
|
54
|
+
pangea/services/vault/vault.py,sha256=2pg3oQrG3OnPeBJDgz6KJxGighifnsI4SUXXY0miXIg,76486
|
55
55
|
pangea/tools.py,sha256=icHduOfZLi02UYdGb5Xl1fQqu-PBRB4tiDPT_nL2Q8E,6380
|
56
56
|
pangea/utils.py,sha256=dZ6MwFVEWXUgXvvDg-k6JnvVfsgslvtaBd7ez7afrqk,4983
|
57
57
|
pangea/verify_audit.py,sha256=nSP17OzoSPdvezRExwfcf45H8ZPZnxZu-CbEp3qFJO0,17354
|
58
|
-
pangea_sdk-6.1.
|
59
|
-
pangea_sdk-6.1.
|
60
|
-
pangea_sdk-6.1.
|
58
|
+
pangea_sdk-6.1.1.dist-info/METADATA,sha256=3NPp98heFZoHGZpELl9kzt5Put7X_u-G6xz0yB4MKeg,6886
|
59
|
+
pangea_sdk-6.1.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
60
|
+
pangea_sdk-6.1.1.dist-info/RECORD,,
|