mypy-boto3-sso-admin 1.40.60__py3-none-any.whl → 1.41.0__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.
- mypy_boto3_sso_admin/__main__.py +4 -4
- mypy_boto3_sso_admin/client.py +34 -39
- mypy_boto3_sso_admin/client.pyi +34 -39
- mypy_boto3_sso_admin/literals.py +3 -7
- mypy_boto3_sso_admin/literals.pyi +3 -7
- mypy_boto3_sso_admin/type_defs.py +33 -38
- mypy_boto3_sso_admin/type_defs.pyi +33 -38
- mypy_boto3_sso_admin/version.py +1 -1
- {mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/METADATA +11 -25
- mypy_boto3_sso_admin-1.41.0.dist-info/RECORD +18 -0
- mypy_boto3_sso_admin-1.40.60.dist-info/RECORD +0 -18
- {mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/top_level.txt +0 -0
mypy_boto3_sso_admin/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SSOAdmin 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 SSOAdmin 1.41.0\n"
|
|
16
|
+
"Version: 1.41.0\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#ssoadmin\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.41.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sso_admin/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -170,12 +171,6 @@ from .type_defs import (
|
|
|
170
171
|
UpdateTrustedTokenIssuerRequestTypeDef,
|
|
171
172
|
)
|
|
172
173
|
|
|
173
|
-
if sys.version_info >= (3, 9):
|
|
174
|
-
from builtins import dict as Dict
|
|
175
|
-
from builtins import type as Type
|
|
176
|
-
from collections.abc import Mapping
|
|
177
|
-
else:
|
|
178
|
-
from typing import Dict, Mapping, Type
|
|
179
174
|
if sys.version_info >= (3, 12):
|
|
180
175
|
from typing import Literal, Unpack
|
|
181
176
|
else:
|
|
@@ -186,14 +181,14 @@ __all__ = ("SSOAdminClient",)
|
|
|
186
181
|
|
|
187
182
|
|
|
188
183
|
class Exceptions(BaseClientExceptions):
|
|
189
|
-
AccessDeniedException:
|
|
190
|
-
ClientError:
|
|
191
|
-
ConflictException:
|
|
192
|
-
InternalServerException:
|
|
193
|
-
ResourceNotFoundException:
|
|
194
|
-
ServiceQuotaExceededException:
|
|
195
|
-
ThrottlingException:
|
|
196
|
-
ValidationException:
|
|
184
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
185
|
+
ClientError: type[BotocoreClientError]
|
|
186
|
+
ConflictException: type[BotocoreClientError]
|
|
187
|
+
InternalServerException: type[BotocoreClientError]
|
|
188
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
189
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
190
|
+
ThrottlingException: type[BotocoreClientError]
|
|
191
|
+
ValidationException: type[BotocoreClientError]
|
|
197
192
|
|
|
198
193
|
|
|
199
194
|
class SSOAdminClient(BaseClient):
|
|
@@ -233,7 +228,7 @@ class SSOAdminClient(BaseClient):
|
|
|
233
228
|
|
|
234
229
|
def attach_customer_managed_policy_reference_to_permission_set(
|
|
235
230
|
self, **kwargs: Unpack[AttachCustomerManagedPolicyReferenceToPermissionSetRequestTypeDef]
|
|
236
|
-
) ->
|
|
231
|
+
) -> dict[str, Any]:
|
|
237
232
|
"""
|
|
238
233
|
Attaches the specified customer managed policy to the specified
|
|
239
234
|
<a>PermissionSet</a>.
|
|
@@ -244,7 +239,7 @@ class SSOAdminClient(BaseClient):
|
|
|
244
239
|
|
|
245
240
|
def attach_managed_policy_to_permission_set(
|
|
246
241
|
self, **kwargs: Unpack[AttachManagedPolicyToPermissionSetRequestTypeDef]
|
|
247
|
-
) ->
|
|
242
|
+
) -> dict[str, Any]:
|
|
248
243
|
"""
|
|
249
244
|
Attaches an Amazon Web Services managed policy ARN to a permission set.
|
|
250
245
|
|
|
@@ -276,7 +271,7 @@ class SSOAdminClient(BaseClient):
|
|
|
276
271
|
|
|
277
272
|
def create_application_assignment(
|
|
278
273
|
self, **kwargs: Unpack[CreateApplicationAssignmentRequestTypeDef]
|
|
279
|
-
) ->
|
|
274
|
+
) -> dict[str, Any]:
|
|
280
275
|
"""
|
|
281
276
|
Grant application access to a user or group.
|
|
282
277
|
|
|
@@ -298,7 +293,7 @@ class SSOAdminClient(BaseClient):
|
|
|
298
293
|
|
|
299
294
|
def create_instance_access_control_attribute_configuration(
|
|
300
295
|
self, **kwargs: Unpack[CreateInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
301
|
-
) ->
|
|
296
|
+
) -> dict[str, Any]:
|
|
302
297
|
"""
|
|
303
298
|
Enables the attributes-based access control (ABAC) feature for the specified
|
|
304
299
|
IAM Identity Center instance.
|
|
@@ -341,7 +336,7 @@ class SSOAdminClient(BaseClient):
|
|
|
341
336
|
|
|
342
337
|
def delete_application(
|
|
343
338
|
self, **kwargs: Unpack[DeleteApplicationRequestTypeDef]
|
|
344
|
-
) ->
|
|
339
|
+
) -> dict[str, Any]:
|
|
345
340
|
"""
|
|
346
341
|
Deletes the association with the application.
|
|
347
342
|
|
|
@@ -361,7 +356,7 @@ class SSOAdminClient(BaseClient):
|
|
|
361
356
|
|
|
362
357
|
def delete_application_assignment(
|
|
363
358
|
self, **kwargs: Unpack[DeleteApplicationAssignmentRequestTypeDef]
|
|
364
|
-
) ->
|
|
359
|
+
) -> dict[str, Any]:
|
|
365
360
|
"""
|
|
366
361
|
Revoke application access to an application by deleting application assignments
|
|
367
362
|
for a user or group.
|
|
@@ -392,7 +387,7 @@ class SSOAdminClient(BaseClient):
|
|
|
392
387
|
|
|
393
388
|
def delete_inline_policy_from_permission_set(
|
|
394
389
|
self, **kwargs: Unpack[DeleteInlinePolicyFromPermissionSetRequestTypeDef]
|
|
395
|
-
) ->
|
|
390
|
+
) -> dict[str, Any]:
|
|
396
391
|
"""
|
|
397
392
|
Deletes the inline policy from a specified permission set.
|
|
398
393
|
|
|
@@ -400,7 +395,7 @@ class SSOAdminClient(BaseClient):
|
|
|
400
395
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
|
|
401
396
|
"""
|
|
402
397
|
|
|
403
|
-
def delete_instance(self, **kwargs: Unpack[DeleteInstanceRequestTypeDef]) ->
|
|
398
|
+
def delete_instance(self, **kwargs: Unpack[DeleteInstanceRequestTypeDef]) -> dict[str, Any]:
|
|
404
399
|
"""
|
|
405
400
|
Deletes the instance of IAM Identity Center.
|
|
406
401
|
|
|
@@ -410,7 +405,7 @@ class SSOAdminClient(BaseClient):
|
|
|
410
405
|
|
|
411
406
|
def delete_instance_access_control_attribute_configuration(
|
|
412
407
|
self, **kwargs: Unpack[DeleteInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
413
|
-
) ->
|
|
408
|
+
) -> dict[str, Any]:
|
|
414
409
|
"""
|
|
415
410
|
Disables the attributes-based access control (ABAC) feature for the specified
|
|
416
411
|
IAM Identity Center instance and deletes all of the attribute mappings that
|
|
@@ -422,7 +417,7 @@ class SSOAdminClient(BaseClient):
|
|
|
422
417
|
|
|
423
418
|
def delete_permission_set(
|
|
424
419
|
self, **kwargs: Unpack[DeletePermissionSetRequestTypeDef]
|
|
425
|
-
) ->
|
|
420
|
+
) -> dict[str, Any]:
|
|
426
421
|
"""
|
|
427
422
|
Deletes the specified permission set.
|
|
428
423
|
|
|
@@ -432,7 +427,7 @@ class SSOAdminClient(BaseClient):
|
|
|
432
427
|
|
|
433
428
|
def delete_permissions_boundary_from_permission_set(
|
|
434
429
|
self, **kwargs: Unpack[DeletePermissionsBoundaryFromPermissionSetRequestTypeDef]
|
|
435
|
-
) ->
|
|
430
|
+
) -> dict[str, Any]:
|
|
436
431
|
"""
|
|
437
432
|
Deletes the permissions boundary from a specified <a>PermissionSet</a>.
|
|
438
433
|
|
|
@@ -442,7 +437,7 @@ class SSOAdminClient(BaseClient):
|
|
|
442
437
|
|
|
443
438
|
def delete_trusted_token_issuer(
|
|
444
439
|
self, **kwargs: Unpack[DeleteTrustedTokenIssuerRequestTypeDef]
|
|
445
|
-
) ->
|
|
440
|
+
) -> dict[str, Any]:
|
|
446
441
|
"""
|
|
447
442
|
Deletes a trusted token issuer configuration from an instance of IAM Identity
|
|
448
443
|
Center.
|
|
@@ -559,7 +554,7 @@ class SSOAdminClient(BaseClient):
|
|
|
559
554
|
|
|
560
555
|
def detach_customer_managed_policy_reference_from_permission_set(
|
|
561
556
|
self, **kwargs: Unpack[DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef]
|
|
562
|
-
) ->
|
|
557
|
+
) -> dict[str, Any]:
|
|
563
558
|
"""
|
|
564
559
|
Detaches the specified customer managed policy from the specified
|
|
565
560
|
<a>PermissionSet</a>.
|
|
@@ -570,7 +565,7 @@ class SSOAdminClient(BaseClient):
|
|
|
570
565
|
|
|
571
566
|
def detach_managed_policy_from_permission_set(
|
|
572
567
|
self, **kwargs: Unpack[DetachManagedPolicyFromPermissionSetRequestTypeDef]
|
|
573
|
-
) ->
|
|
568
|
+
) -> dict[str, Any]:
|
|
574
569
|
"""
|
|
575
570
|
Detaches the attached Amazon Web Services managed policy ARN from the specified
|
|
576
571
|
permission set.
|
|
@@ -886,7 +881,7 @@ class SSOAdminClient(BaseClient):
|
|
|
886
881
|
|
|
887
882
|
def put_application_assignment_configuration(
|
|
888
883
|
self, **kwargs: Unpack[PutApplicationAssignmentConfigurationRequestTypeDef]
|
|
889
|
-
) ->
|
|
884
|
+
) -> dict[str, Any]:
|
|
890
885
|
"""
|
|
891
886
|
Configure how users gain access to an application.
|
|
892
887
|
|
|
@@ -916,7 +911,7 @@ class SSOAdminClient(BaseClient):
|
|
|
916
911
|
|
|
917
912
|
def put_application_session_configuration(
|
|
918
913
|
self, **kwargs: Unpack[PutApplicationSessionConfigurationRequestTypeDef]
|
|
919
|
-
) ->
|
|
914
|
+
) -> dict[str, Any]:
|
|
920
915
|
"""
|
|
921
916
|
Updates the session configuration for an application in IAM Identity Center.
|
|
922
917
|
|
|
@@ -926,7 +921,7 @@ class SSOAdminClient(BaseClient):
|
|
|
926
921
|
|
|
927
922
|
def put_inline_policy_to_permission_set(
|
|
928
923
|
self, **kwargs: Unpack[PutInlinePolicyToPermissionSetRequestTypeDef]
|
|
929
|
-
) ->
|
|
924
|
+
) -> dict[str, Any]:
|
|
930
925
|
"""
|
|
931
926
|
Attaches an inline policy to a permission set.
|
|
932
927
|
|
|
@@ -936,7 +931,7 @@ class SSOAdminClient(BaseClient):
|
|
|
936
931
|
|
|
937
932
|
def put_permissions_boundary_to_permission_set(
|
|
938
933
|
self, **kwargs: Unpack[PutPermissionsBoundaryToPermissionSetRequestTypeDef]
|
|
939
|
-
) ->
|
|
934
|
+
) -> dict[str, Any]:
|
|
940
935
|
"""
|
|
941
936
|
Attaches an Amazon Web Services managed or customer managed policy to the
|
|
942
937
|
specified <a>PermissionSet</a> as a permissions boundary.
|
|
@@ -945,7 +940,7 @@ class SSOAdminClient(BaseClient):
|
|
|
945
940
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_permissions_boundary_to_permission_set)
|
|
946
941
|
"""
|
|
947
942
|
|
|
948
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) ->
|
|
943
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
949
944
|
"""
|
|
950
945
|
Associates a set of tags with a specified resource.
|
|
951
946
|
|
|
@@ -953,7 +948,7 @@ class SSOAdminClient(BaseClient):
|
|
|
953
948
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#tag_resource)
|
|
954
949
|
"""
|
|
955
950
|
|
|
956
|
-
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) ->
|
|
951
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
957
952
|
"""
|
|
958
953
|
Disassociates a set of tags from a specified resource.
|
|
959
954
|
|
|
@@ -963,7 +958,7 @@ class SSOAdminClient(BaseClient):
|
|
|
963
958
|
|
|
964
959
|
def update_application(
|
|
965
960
|
self, **kwargs: Unpack[UpdateApplicationRequestTypeDef]
|
|
966
|
-
) ->
|
|
961
|
+
) -> dict[str, Any]:
|
|
967
962
|
"""
|
|
968
963
|
Updates application properties.
|
|
969
964
|
|
|
@@ -971,7 +966,7 @@ class SSOAdminClient(BaseClient):
|
|
|
971
966
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_application)
|
|
972
967
|
"""
|
|
973
968
|
|
|
974
|
-
def update_instance(self, **kwargs: Unpack[UpdateInstanceRequestTypeDef]) ->
|
|
969
|
+
def update_instance(self, **kwargs: Unpack[UpdateInstanceRequestTypeDef]) -> dict[str, Any]:
|
|
975
970
|
"""
|
|
976
971
|
Update the details for the instance of IAM Identity Center that is owned by the
|
|
977
972
|
Amazon Web Services account.
|
|
@@ -982,7 +977,7 @@ class SSOAdminClient(BaseClient):
|
|
|
982
977
|
|
|
983
978
|
def update_instance_access_control_attribute_configuration(
|
|
984
979
|
self, **kwargs: Unpack[UpdateInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
985
|
-
) ->
|
|
980
|
+
) -> dict[str, Any]:
|
|
986
981
|
"""
|
|
987
982
|
Updates the IAM Identity Center identity store attributes that you can use with
|
|
988
983
|
the IAM Identity Center instance for attributes-based access control (ABAC).
|
|
@@ -993,7 +988,7 @@ class SSOAdminClient(BaseClient):
|
|
|
993
988
|
|
|
994
989
|
def update_permission_set(
|
|
995
990
|
self, **kwargs: Unpack[UpdatePermissionSetRequestTypeDef]
|
|
996
|
-
) ->
|
|
991
|
+
) -> dict[str, Any]:
|
|
997
992
|
"""
|
|
998
993
|
Updates an existing permission set.
|
|
999
994
|
|
|
@@ -1003,7 +998,7 @@ class SSOAdminClient(BaseClient):
|
|
|
1003
998
|
|
|
1004
999
|
def update_trusted_token_issuer(
|
|
1005
1000
|
self, **kwargs: Unpack[UpdateTrustedTokenIssuerRequestTypeDef]
|
|
1006
|
-
) ->
|
|
1001
|
+
) -> dict[str, Any]:
|
|
1007
1002
|
"""
|
|
1008
1003
|
Updates the name of the trusted token issuer, or the path of a source attribute
|
|
1009
1004
|
or destination attribute for a trusted token issuer configuration.
|
mypy_boto3_sso_admin/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -170,12 +171,6 @@ from .type_defs import (
|
|
|
170
171
|
UpdateTrustedTokenIssuerRequestTypeDef,
|
|
171
172
|
)
|
|
172
173
|
|
|
173
|
-
if sys.version_info >= (3, 9):
|
|
174
|
-
from builtins import dict as Dict
|
|
175
|
-
from builtins import type as Type
|
|
176
|
-
from collections.abc import Mapping
|
|
177
|
-
else:
|
|
178
|
-
from typing import Dict, Mapping, Type
|
|
179
174
|
if sys.version_info >= (3, 12):
|
|
180
175
|
from typing import Literal, Unpack
|
|
181
176
|
else:
|
|
@@ -184,14 +179,14 @@ else:
|
|
|
184
179
|
__all__ = ("SSOAdminClient",)
|
|
185
180
|
|
|
186
181
|
class Exceptions(BaseClientExceptions):
|
|
187
|
-
AccessDeniedException:
|
|
188
|
-
ClientError:
|
|
189
|
-
ConflictException:
|
|
190
|
-
InternalServerException:
|
|
191
|
-
ResourceNotFoundException:
|
|
192
|
-
ServiceQuotaExceededException:
|
|
193
|
-
ThrottlingException:
|
|
194
|
-
ValidationException:
|
|
182
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
183
|
+
ClientError: type[BotocoreClientError]
|
|
184
|
+
ConflictException: type[BotocoreClientError]
|
|
185
|
+
InternalServerException: type[BotocoreClientError]
|
|
186
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
187
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
188
|
+
ThrottlingException: type[BotocoreClientError]
|
|
189
|
+
ValidationException: type[BotocoreClientError]
|
|
195
190
|
|
|
196
191
|
class SSOAdminClient(BaseClient):
|
|
197
192
|
"""
|
|
@@ -230,7 +225,7 @@ class SSOAdminClient(BaseClient):
|
|
|
230
225
|
|
|
231
226
|
def attach_customer_managed_policy_reference_to_permission_set(
|
|
232
227
|
self, **kwargs: Unpack[AttachCustomerManagedPolicyReferenceToPermissionSetRequestTypeDef]
|
|
233
|
-
) ->
|
|
228
|
+
) -> dict[str, Any]:
|
|
234
229
|
"""
|
|
235
230
|
Attaches the specified customer managed policy to the specified
|
|
236
231
|
<a>PermissionSet</a>.
|
|
@@ -241,7 +236,7 @@ class SSOAdminClient(BaseClient):
|
|
|
241
236
|
|
|
242
237
|
def attach_managed_policy_to_permission_set(
|
|
243
238
|
self, **kwargs: Unpack[AttachManagedPolicyToPermissionSetRequestTypeDef]
|
|
244
|
-
) ->
|
|
239
|
+
) -> dict[str, Any]:
|
|
245
240
|
"""
|
|
246
241
|
Attaches an Amazon Web Services managed policy ARN to a permission set.
|
|
247
242
|
|
|
@@ -273,7 +268,7 @@ class SSOAdminClient(BaseClient):
|
|
|
273
268
|
|
|
274
269
|
def create_application_assignment(
|
|
275
270
|
self, **kwargs: Unpack[CreateApplicationAssignmentRequestTypeDef]
|
|
276
|
-
) ->
|
|
271
|
+
) -> dict[str, Any]:
|
|
277
272
|
"""
|
|
278
273
|
Grant application access to a user or group.
|
|
279
274
|
|
|
@@ -295,7 +290,7 @@ class SSOAdminClient(BaseClient):
|
|
|
295
290
|
|
|
296
291
|
def create_instance_access_control_attribute_configuration(
|
|
297
292
|
self, **kwargs: Unpack[CreateInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
298
|
-
) ->
|
|
293
|
+
) -> dict[str, Any]:
|
|
299
294
|
"""
|
|
300
295
|
Enables the attributes-based access control (ABAC) feature for the specified
|
|
301
296
|
IAM Identity Center instance.
|
|
@@ -338,7 +333,7 @@ class SSOAdminClient(BaseClient):
|
|
|
338
333
|
|
|
339
334
|
def delete_application(
|
|
340
335
|
self, **kwargs: Unpack[DeleteApplicationRequestTypeDef]
|
|
341
|
-
) ->
|
|
336
|
+
) -> dict[str, Any]:
|
|
342
337
|
"""
|
|
343
338
|
Deletes the association with the application.
|
|
344
339
|
|
|
@@ -358,7 +353,7 @@ class SSOAdminClient(BaseClient):
|
|
|
358
353
|
|
|
359
354
|
def delete_application_assignment(
|
|
360
355
|
self, **kwargs: Unpack[DeleteApplicationAssignmentRequestTypeDef]
|
|
361
|
-
) ->
|
|
356
|
+
) -> dict[str, Any]:
|
|
362
357
|
"""
|
|
363
358
|
Revoke application access to an application by deleting application assignments
|
|
364
359
|
for a user or group.
|
|
@@ -389,7 +384,7 @@ class SSOAdminClient(BaseClient):
|
|
|
389
384
|
|
|
390
385
|
def delete_inline_policy_from_permission_set(
|
|
391
386
|
self, **kwargs: Unpack[DeleteInlinePolicyFromPermissionSetRequestTypeDef]
|
|
392
|
-
) ->
|
|
387
|
+
) -> dict[str, Any]:
|
|
393
388
|
"""
|
|
394
389
|
Deletes the inline policy from a specified permission set.
|
|
395
390
|
|
|
@@ -397,7 +392,7 @@ class SSOAdminClient(BaseClient):
|
|
|
397
392
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
|
|
398
393
|
"""
|
|
399
394
|
|
|
400
|
-
def delete_instance(self, **kwargs: Unpack[DeleteInstanceRequestTypeDef]) ->
|
|
395
|
+
def delete_instance(self, **kwargs: Unpack[DeleteInstanceRequestTypeDef]) -> dict[str, Any]:
|
|
401
396
|
"""
|
|
402
397
|
Deletes the instance of IAM Identity Center.
|
|
403
398
|
|
|
@@ -407,7 +402,7 @@ class SSOAdminClient(BaseClient):
|
|
|
407
402
|
|
|
408
403
|
def delete_instance_access_control_attribute_configuration(
|
|
409
404
|
self, **kwargs: Unpack[DeleteInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
410
|
-
) ->
|
|
405
|
+
) -> dict[str, Any]:
|
|
411
406
|
"""
|
|
412
407
|
Disables the attributes-based access control (ABAC) feature for the specified
|
|
413
408
|
IAM Identity Center instance and deletes all of the attribute mappings that
|
|
@@ -419,7 +414,7 @@ class SSOAdminClient(BaseClient):
|
|
|
419
414
|
|
|
420
415
|
def delete_permission_set(
|
|
421
416
|
self, **kwargs: Unpack[DeletePermissionSetRequestTypeDef]
|
|
422
|
-
) ->
|
|
417
|
+
) -> dict[str, Any]:
|
|
423
418
|
"""
|
|
424
419
|
Deletes the specified permission set.
|
|
425
420
|
|
|
@@ -429,7 +424,7 @@ class SSOAdminClient(BaseClient):
|
|
|
429
424
|
|
|
430
425
|
def delete_permissions_boundary_from_permission_set(
|
|
431
426
|
self, **kwargs: Unpack[DeletePermissionsBoundaryFromPermissionSetRequestTypeDef]
|
|
432
|
-
) ->
|
|
427
|
+
) -> dict[str, Any]:
|
|
433
428
|
"""
|
|
434
429
|
Deletes the permissions boundary from a specified <a>PermissionSet</a>.
|
|
435
430
|
|
|
@@ -439,7 +434,7 @@ class SSOAdminClient(BaseClient):
|
|
|
439
434
|
|
|
440
435
|
def delete_trusted_token_issuer(
|
|
441
436
|
self, **kwargs: Unpack[DeleteTrustedTokenIssuerRequestTypeDef]
|
|
442
|
-
) ->
|
|
437
|
+
) -> dict[str, Any]:
|
|
443
438
|
"""
|
|
444
439
|
Deletes a trusted token issuer configuration from an instance of IAM Identity
|
|
445
440
|
Center.
|
|
@@ -556,7 +551,7 @@ class SSOAdminClient(BaseClient):
|
|
|
556
551
|
|
|
557
552
|
def detach_customer_managed_policy_reference_from_permission_set(
|
|
558
553
|
self, **kwargs: Unpack[DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef]
|
|
559
|
-
) ->
|
|
554
|
+
) -> dict[str, Any]:
|
|
560
555
|
"""
|
|
561
556
|
Detaches the specified customer managed policy from the specified
|
|
562
557
|
<a>PermissionSet</a>.
|
|
@@ -567,7 +562,7 @@ class SSOAdminClient(BaseClient):
|
|
|
567
562
|
|
|
568
563
|
def detach_managed_policy_from_permission_set(
|
|
569
564
|
self, **kwargs: Unpack[DetachManagedPolicyFromPermissionSetRequestTypeDef]
|
|
570
|
-
) ->
|
|
565
|
+
) -> dict[str, Any]:
|
|
571
566
|
"""
|
|
572
567
|
Detaches the attached Amazon Web Services managed policy ARN from the specified
|
|
573
568
|
permission set.
|
|
@@ -883,7 +878,7 @@ class SSOAdminClient(BaseClient):
|
|
|
883
878
|
|
|
884
879
|
def put_application_assignment_configuration(
|
|
885
880
|
self, **kwargs: Unpack[PutApplicationAssignmentConfigurationRequestTypeDef]
|
|
886
|
-
) ->
|
|
881
|
+
) -> dict[str, Any]:
|
|
887
882
|
"""
|
|
888
883
|
Configure how users gain access to an application.
|
|
889
884
|
|
|
@@ -913,7 +908,7 @@ class SSOAdminClient(BaseClient):
|
|
|
913
908
|
|
|
914
909
|
def put_application_session_configuration(
|
|
915
910
|
self, **kwargs: Unpack[PutApplicationSessionConfigurationRequestTypeDef]
|
|
916
|
-
) ->
|
|
911
|
+
) -> dict[str, Any]:
|
|
917
912
|
"""
|
|
918
913
|
Updates the session configuration for an application in IAM Identity Center.
|
|
919
914
|
|
|
@@ -923,7 +918,7 @@ class SSOAdminClient(BaseClient):
|
|
|
923
918
|
|
|
924
919
|
def put_inline_policy_to_permission_set(
|
|
925
920
|
self, **kwargs: Unpack[PutInlinePolicyToPermissionSetRequestTypeDef]
|
|
926
|
-
) ->
|
|
921
|
+
) -> dict[str, Any]:
|
|
927
922
|
"""
|
|
928
923
|
Attaches an inline policy to a permission set.
|
|
929
924
|
|
|
@@ -933,7 +928,7 @@ class SSOAdminClient(BaseClient):
|
|
|
933
928
|
|
|
934
929
|
def put_permissions_boundary_to_permission_set(
|
|
935
930
|
self, **kwargs: Unpack[PutPermissionsBoundaryToPermissionSetRequestTypeDef]
|
|
936
|
-
) ->
|
|
931
|
+
) -> dict[str, Any]:
|
|
937
932
|
"""
|
|
938
933
|
Attaches an Amazon Web Services managed or customer managed policy to the
|
|
939
934
|
specified <a>PermissionSet</a> as a permissions boundary.
|
|
@@ -942,7 +937,7 @@ class SSOAdminClient(BaseClient):
|
|
|
942
937
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_permissions_boundary_to_permission_set)
|
|
943
938
|
"""
|
|
944
939
|
|
|
945
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) ->
|
|
940
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
946
941
|
"""
|
|
947
942
|
Associates a set of tags with a specified resource.
|
|
948
943
|
|
|
@@ -950,7 +945,7 @@ class SSOAdminClient(BaseClient):
|
|
|
950
945
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#tag_resource)
|
|
951
946
|
"""
|
|
952
947
|
|
|
953
|
-
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) ->
|
|
948
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
954
949
|
"""
|
|
955
950
|
Disassociates a set of tags from a specified resource.
|
|
956
951
|
|
|
@@ -960,7 +955,7 @@ class SSOAdminClient(BaseClient):
|
|
|
960
955
|
|
|
961
956
|
def update_application(
|
|
962
957
|
self, **kwargs: Unpack[UpdateApplicationRequestTypeDef]
|
|
963
|
-
) ->
|
|
958
|
+
) -> dict[str, Any]:
|
|
964
959
|
"""
|
|
965
960
|
Updates application properties.
|
|
966
961
|
|
|
@@ -968,7 +963,7 @@ class SSOAdminClient(BaseClient):
|
|
|
968
963
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_application)
|
|
969
964
|
"""
|
|
970
965
|
|
|
971
|
-
def update_instance(self, **kwargs: Unpack[UpdateInstanceRequestTypeDef]) ->
|
|
966
|
+
def update_instance(self, **kwargs: Unpack[UpdateInstanceRequestTypeDef]) -> dict[str, Any]:
|
|
972
967
|
"""
|
|
973
968
|
Update the details for the instance of IAM Identity Center that is owned by the
|
|
974
969
|
Amazon Web Services account.
|
|
@@ -979,7 +974,7 @@ class SSOAdminClient(BaseClient):
|
|
|
979
974
|
|
|
980
975
|
def update_instance_access_control_attribute_configuration(
|
|
981
976
|
self, **kwargs: Unpack[UpdateInstanceAccessControlAttributeConfigurationRequestTypeDef]
|
|
982
|
-
) ->
|
|
977
|
+
) -> dict[str, Any]:
|
|
983
978
|
"""
|
|
984
979
|
Updates the IAM Identity Center identity store attributes that you can use with
|
|
985
980
|
the IAM Identity Center instance for attributes-based access control (ABAC).
|
|
@@ -990,7 +985,7 @@ class SSOAdminClient(BaseClient):
|
|
|
990
985
|
|
|
991
986
|
def update_permission_set(
|
|
992
987
|
self, **kwargs: Unpack[UpdatePermissionSetRequestTypeDef]
|
|
993
|
-
) ->
|
|
988
|
+
) -> dict[str, Any]:
|
|
994
989
|
"""
|
|
995
990
|
Updates an existing permission set.
|
|
996
991
|
|
|
@@ -1000,7 +995,7 @@ class SSOAdminClient(BaseClient):
|
|
|
1000
995
|
|
|
1001
996
|
def update_trusted_token_issuer(
|
|
1002
997
|
self, **kwargs: Unpack[UpdateTrustedTokenIssuerRequestTypeDef]
|
|
1003
|
-
) ->
|
|
998
|
+
) -> dict[str, Any]:
|
|
1004
999
|
"""
|
|
1005
1000
|
Updates the name of the trusted token issuer, or the path of a source attribute
|
|
1006
1001
|
or destination attribute for a trusted token issuer configuration.
|
mypy_boto3_sso_admin/literals.py
CHANGED
|
@@ -159,7 +159,6 @@ ServiceName = Literal[
|
|
|
159
159
|
"apprunner",
|
|
160
160
|
"appstream",
|
|
161
161
|
"appsync",
|
|
162
|
-
"apptest",
|
|
163
162
|
"arc-region-switch",
|
|
164
163
|
"arc-zonal-shift",
|
|
165
164
|
"artifact",
|
|
@@ -327,7 +326,6 @@ ServiceName = Literal[
|
|
|
327
326
|
"iotdeviceadvisor",
|
|
328
327
|
"iotevents",
|
|
329
328
|
"iotevents-data",
|
|
330
|
-
"iotfleethub",
|
|
331
329
|
"iotfleetwise",
|
|
332
330
|
"iotsecuretunneling",
|
|
333
331
|
"iotsitewise",
|
|
@@ -366,8 +364,6 @@ ServiceName = Literal[
|
|
|
366
364
|
"location",
|
|
367
365
|
"logs",
|
|
368
366
|
"lookoutequipment",
|
|
369
|
-
"lookoutmetrics",
|
|
370
|
-
"lookoutvision",
|
|
371
367
|
"m2",
|
|
372
368
|
"machinelearning",
|
|
373
369
|
"macie2",
|
|
@@ -402,6 +398,7 @@ ServiceName = Literal[
|
|
|
402
398
|
"mq",
|
|
403
399
|
"mturk",
|
|
404
400
|
"mwaa",
|
|
401
|
+
"mwaa-serverless",
|
|
405
402
|
"neptune",
|
|
406
403
|
"neptune-graph",
|
|
407
404
|
"neptunedata",
|
|
@@ -421,6 +418,7 @@ ServiceName = Literal[
|
|
|
421
418
|
"osis",
|
|
422
419
|
"outposts",
|
|
423
420
|
"panorama",
|
|
421
|
+
"partnercentral-channel",
|
|
424
422
|
"partnercentral-selling",
|
|
425
423
|
"payment-cryptography",
|
|
426
424
|
"payment-cryptography-data",
|
|
@@ -442,8 +440,6 @@ ServiceName = Literal[
|
|
|
442
440
|
"qapps",
|
|
443
441
|
"qbusiness",
|
|
444
442
|
"qconnect",
|
|
445
|
-
"qldb",
|
|
446
|
-
"qldb-session",
|
|
447
443
|
"quicksight",
|
|
448
444
|
"ram",
|
|
449
445
|
"rbin",
|
|
@@ -458,7 +454,6 @@ ServiceName = Literal[
|
|
|
458
454
|
"resource-explorer-2",
|
|
459
455
|
"resource-groups",
|
|
460
456
|
"resourcegroupstaggingapi",
|
|
461
|
-
"robomaker",
|
|
462
457
|
"rolesanywhere",
|
|
463
458
|
"route53",
|
|
464
459
|
"route53-recovery-cluster",
|
|
@@ -498,6 +493,7 @@ ServiceName = Literal[
|
|
|
498
493
|
"sesv2",
|
|
499
494
|
"shield",
|
|
500
495
|
"signer",
|
|
496
|
+
"signin",
|
|
501
497
|
"simspaceweaver",
|
|
502
498
|
"snow-device-management",
|
|
503
499
|
"snowball",
|
|
@@ -157,7 +157,6 @@ ServiceName = Literal[
|
|
|
157
157
|
"apprunner",
|
|
158
158
|
"appstream",
|
|
159
159
|
"appsync",
|
|
160
|
-
"apptest",
|
|
161
160
|
"arc-region-switch",
|
|
162
161
|
"arc-zonal-shift",
|
|
163
162
|
"artifact",
|
|
@@ -325,7 +324,6 @@ ServiceName = Literal[
|
|
|
325
324
|
"iotdeviceadvisor",
|
|
326
325
|
"iotevents",
|
|
327
326
|
"iotevents-data",
|
|
328
|
-
"iotfleethub",
|
|
329
327
|
"iotfleetwise",
|
|
330
328
|
"iotsecuretunneling",
|
|
331
329
|
"iotsitewise",
|
|
@@ -364,8 +362,6 @@ ServiceName = Literal[
|
|
|
364
362
|
"location",
|
|
365
363
|
"logs",
|
|
366
364
|
"lookoutequipment",
|
|
367
|
-
"lookoutmetrics",
|
|
368
|
-
"lookoutvision",
|
|
369
365
|
"m2",
|
|
370
366
|
"machinelearning",
|
|
371
367
|
"macie2",
|
|
@@ -400,6 +396,7 @@ ServiceName = Literal[
|
|
|
400
396
|
"mq",
|
|
401
397
|
"mturk",
|
|
402
398
|
"mwaa",
|
|
399
|
+
"mwaa-serverless",
|
|
403
400
|
"neptune",
|
|
404
401
|
"neptune-graph",
|
|
405
402
|
"neptunedata",
|
|
@@ -419,6 +416,7 @@ ServiceName = Literal[
|
|
|
419
416
|
"osis",
|
|
420
417
|
"outposts",
|
|
421
418
|
"panorama",
|
|
419
|
+
"partnercentral-channel",
|
|
422
420
|
"partnercentral-selling",
|
|
423
421
|
"payment-cryptography",
|
|
424
422
|
"payment-cryptography-data",
|
|
@@ -440,8 +438,6 @@ ServiceName = Literal[
|
|
|
440
438
|
"qapps",
|
|
441
439
|
"qbusiness",
|
|
442
440
|
"qconnect",
|
|
443
|
-
"qldb",
|
|
444
|
-
"qldb-session",
|
|
445
441
|
"quicksight",
|
|
446
442
|
"ram",
|
|
447
443
|
"rbin",
|
|
@@ -456,7 +452,6 @@ ServiceName = Literal[
|
|
|
456
452
|
"resource-explorer-2",
|
|
457
453
|
"resource-groups",
|
|
458
454
|
"resourcegroupstaggingapi",
|
|
459
|
-
"robomaker",
|
|
460
455
|
"rolesanywhere",
|
|
461
456
|
"route53",
|
|
462
457
|
"route53-recovery-cluster",
|
|
@@ -496,6 +491,7 @@ ServiceName = Literal[
|
|
|
496
491
|
"sesv2",
|
|
497
492
|
"shield",
|
|
498
493
|
"signer",
|
|
494
|
+
"signin",
|
|
499
495
|
"simspaceweaver",
|
|
500
496
|
"snow-device-management",
|
|
501
497
|
"snowball",
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -37,12 +38,6 @@ from .literals import (
|
|
|
37
38
|
UserBackgroundSessionApplicationStatusType,
|
|
38
39
|
)
|
|
39
40
|
|
|
40
|
-
if sys.version_info >= (3, 9):
|
|
41
|
-
from builtins import dict as Dict
|
|
42
|
-
from builtins import list as List
|
|
43
|
-
from collections.abc import Mapping, Sequence
|
|
44
|
-
else:
|
|
45
|
-
from typing import Dict, List, Mapping, Sequence
|
|
46
41
|
if sys.version_info >= (3, 12):
|
|
47
42
|
from typing import Literal, NotRequired, TypedDict
|
|
48
43
|
else:
|
|
@@ -253,7 +248,7 @@ __all__ = (
|
|
|
253
248
|
|
|
254
249
|
|
|
255
250
|
class AccessControlAttributeValueOutputTypeDef(TypedDict):
|
|
256
|
-
Source:
|
|
251
|
+
Source: list[str]
|
|
257
252
|
|
|
258
253
|
|
|
259
254
|
class AccessControlAttributeValueTypeDef(TypedDict):
|
|
@@ -327,7 +322,7 @@ class AttachedManagedPolicyTypeDef(TypedDict):
|
|
|
327
322
|
|
|
328
323
|
|
|
329
324
|
class IamAuthenticationMethodOutputTypeDef(TypedDict):
|
|
330
|
-
ActorPolicy:
|
|
325
|
+
ActorPolicy: dict[str, Any]
|
|
331
326
|
|
|
332
327
|
|
|
333
328
|
class IamAuthenticationMethodTypeDef(TypedDict):
|
|
@@ -335,7 +330,7 @@ class IamAuthenticationMethodTypeDef(TypedDict):
|
|
|
335
330
|
|
|
336
331
|
|
|
337
332
|
class AuthorizationCodeGrantOutputTypeDef(TypedDict):
|
|
338
|
-
RedirectUris: NotRequired[
|
|
333
|
+
RedirectUris: NotRequired[list[str]]
|
|
339
334
|
|
|
340
335
|
|
|
341
336
|
class AuthorizationCodeGrantTypeDef(TypedDict):
|
|
@@ -344,7 +339,7 @@ class AuthorizationCodeGrantTypeDef(TypedDict):
|
|
|
344
339
|
|
|
345
340
|
class AuthorizedTokenIssuerOutputTypeDef(TypedDict):
|
|
346
341
|
TrustedTokenIssuerArn: NotRequired[str]
|
|
347
|
-
AuthorizedAudiences: NotRequired[
|
|
342
|
+
AuthorizedAudiences: NotRequired[list[str]]
|
|
348
343
|
|
|
349
344
|
|
|
350
345
|
class AuthorizedTokenIssuerTypeDef(TypedDict):
|
|
@@ -364,7 +359,7 @@ class CreateAccountAssignmentRequestTypeDef(TypedDict):
|
|
|
364
359
|
class ResponseMetadataTypeDef(TypedDict):
|
|
365
360
|
RequestId: str
|
|
366
361
|
HTTPStatusCode: int
|
|
367
|
-
HTTPHeaders:
|
|
362
|
+
HTTPHeaders: dict[str, str]
|
|
368
363
|
RetryAttempts: int
|
|
369
364
|
HostId: NotRequired[str]
|
|
370
365
|
|
|
@@ -604,7 +599,7 @@ class ListApplicationAccessScopesRequestTypeDef(TypedDict):
|
|
|
604
599
|
|
|
605
600
|
class ScopeDetailsTypeDef(TypedDict):
|
|
606
601
|
Scope: str
|
|
607
|
-
AuthorizedTargets: NotRequired[
|
|
602
|
+
AuthorizedTargets: NotRequired[list[str]]
|
|
608
603
|
|
|
609
604
|
|
|
610
605
|
class ListApplicationAssignmentsFilterTypeDef(TypedDict):
|
|
@@ -796,7 +791,7 @@ class AuthenticationMethodTypeDef(TypedDict):
|
|
|
796
791
|
|
|
797
792
|
|
|
798
793
|
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
799
|
-
AuthorizedTokenIssuers: NotRequired[
|
|
794
|
+
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
800
795
|
|
|
801
796
|
|
|
802
797
|
class JwtBearerGrantTypeDef(TypedDict):
|
|
@@ -851,7 +846,7 @@ class EmptyResponseMetadataTypeDef(TypedDict):
|
|
|
851
846
|
|
|
852
847
|
class GetApplicationAccessScopeResponseTypeDef(TypedDict):
|
|
853
848
|
Scope: str
|
|
854
|
-
AuthorizedTargets:
|
|
849
|
+
AuthorizedTargets: list[str]
|
|
855
850
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
856
851
|
|
|
857
852
|
|
|
@@ -871,67 +866,67 @@ class GetInlinePolicyForPermissionSetResponseTypeDef(TypedDict):
|
|
|
871
866
|
|
|
872
867
|
|
|
873
868
|
class ListAccountAssignmentCreationStatusResponseTypeDef(TypedDict):
|
|
874
|
-
AccountAssignmentsCreationStatus:
|
|
869
|
+
AccountAssignmentsCreationStatus: list[AccountAssignmentOperationStatusMetadataTypeDef]
|
|
875
870
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
876
871
|
NextToken: NotRequired[str]
|
|
877
872
|
|
|
878
873
|
|
|
879
874
|
class ListAccountAssignmentDeletionStatusResponseTypeDef(TypedDict):
|
|
880
|
-
AccountAssignmentsDeletionStatus:
|
|
875
|
+
AccountAssignmentsDeletionStatus: list[AccountAssignmentOperationStatusMetadataTypeDef]
|
|
881
876
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
882
877
|
NextToken: NotRequired[str]
|
|
883
878
|
|
|
884
879
|
|
|
885
880
|
class ListAccountAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
886
|
-
AccountAssignments:
|
|
881
|
+
AccountAssignments: list[AccountAssignmentForPrincipalTypeDef]
|
|
887
882
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
888
883
|
NextToken: NotRequired[str]
|
|
889
884
|
|
|
890
885
|
|
|
891
886
|
class ListAccountAssignmentsResponseTypeDef(TypedDict):
|
|
892
|
-
AccountAssignments:
|
|
887
|
+
AccountAssignments: list[AccountAssignmentTypeDef]
|
|
893
888
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
894
889
|
NextToken: NotRequired[str]
|
|
895
890
|
|
|
896
891
|
|
|
897
892
|
class ListAccountsForProvisionedPermissionSetResponseTypeDef(TypedDict):
|
|
898
|
-
AccountIds:
|
|
893
|
+
AccountIds: list[str]
|
|
899
894
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
900
895
|
NextToken: NotRequired[str]
|
|
901
896
|
|
|
902
897
|
|
|
903
898
|
class ListApplicationAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
904
|
-
ApplicationAssignments:
|
|
899
|
+
ApplicationAssignments: list[ApplicationAssignmentForPrincipalTypeDef]
|
|
905
900
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
906
901
|
NextToken: NotRequired[str]
|
|
907
902
|
|
|
908
903
|
|
|
909
904
|
class ListApplicationAssignmentsResponseTypeDef(TypedDict):
|
|
910
|
-
ApplicationAssignments:
|
|
905
|
+
ApplicationAssignments: list[ApplicationAssignmentTypeDef]
|
|
911
906
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
912
907
|
NextToken: NotRequired[str]
|
|
913
908
|
|
|
914
909
|
|
|
915
910
|
class ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef(TypedDict):
|
|
916
|
-
CustomerManagedPolicyReferences:
|
|
911
|
+
CustomerManagedPolicyReferences: list[CustomerManagedPolicyReferenceTypeDef]
|
|
917
912
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
918
913
|
NextToken: NotRequired[str]
|
|
919
914
|
|
|
920
915
|
|
|
921
916
|
class ListManagedPoliciesInPermissionSetResponseTypeDef(TypedDict):
|
|
922
|
-
AttachedManagedPolicies:
|
|
917
|
+
AttachedManagedPolicies: list[AttachedManagedPolicyTypeDef]
|
|
923
918
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
924
919
|
NextToken: NotRequired[str]
|
|
925
920
|
|
|
926
921
|
|
|
927
922
|
class ListPermissionSetsProvisionedToAccountResponseTypeDef(TypedDict):
|
|
928
|
-
PermissionSets:
|
|
923
|
+
PermissionSets: list[str]
|
|
929
924
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
930
925
|
NextToken: NotRequired[str]
|
|
931
926
|
|
|
932
927
|
|
|
933
928
|
class ListPermissionSetsResponseTypeDef(TypedDict):
|
|
934
|
-
PermissionSets:
|
|
929
|
+
PermissionSets: list[str]
|
|
935
930
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
936
931
|
NextToken: NotRequired[str]
|
|
937
932
|
|
|
@@ -952,7 +947,7 @@ class CreatePermissionSetRequestTypeDef(TypedDict):
|
|
|
952
947
|
|
|
953
948
|
|
|
954
949
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
955
|
-
Tags:
|
|
950
|
+
Tags: list[TagTypeDef]
|
|
956
951
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
957
952
|
NextToken: NotRequired[str]
|
|
958
953
|
|
|
@@ -1002,7 +997,7 @@ class UpdateInstanceRequestTypeDef(TypedDict):
|
|
|
1002
997
|
|
|
1003
998
|
|
|
1004
999
|
class ListInstancesResponseTypeDef(TypedDict):
|
|
1005
|
-
Instances:
|
|
1000
|
+
Instances: list[InstanceMetadataTypeDef]
|
|
1006
1001
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1007
1002
|
NextToken: NotRequired[str]
|
|
1008
1003
|
|
|
@@ -1141,7 +1136,7 @@ class ListAccountAssignmentsForPrincipalRequestTypeDef(TypedDict):
|
|
|
1141
1136
|
|
|
1142
1137
|
|
|
1143
1138
|
class ListApplicationAccessScopesResponseTypeDef(TypedDict):
|
|
1144
|
-
Scopes:
|
|
1139
|
+
Scopes: list[ScopeDetailsTypeDef]
|
|
1145
1140
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1146
1141
|
NextToken: NotRequired[str]
|
|
1147
1142
|
|
|
@@ -1177,13 +1172,13 @@ class ListApplicationsRequestTypeDef(TypedDict):
|
|
|
1177
1172
|
|
|
1178
1173
|
|
|
1179
1174
|
class ListPermissionSetProvisioningStatusResponseTypeDef(TypedDict):
|
|
1180
|
-
PermissionSetsProvisioningStatus:
|
|
1175
|
+
PermissionSetsProvisioningStatus: list[PermissionSetProvisioningStatusMetadataTypeDef]
|
|
1181
1176
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1182
1177
|
NextToken: NotRequired[str]
|
|
1183
1178
|
|
|
1184
1179
|
|
|
1185
1180
|
class ListTrustedTokenIssuersResponseTypeDef(TypedDict):
|
|
1186
|
-
TrustedTokenIssuers:
|
|
1181
|
+
TrustedTokenIssuers: list[TrustedTokenIssuerMetadataTypeDef]
|
|
1187
1182
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1188
1183
|
NextToken: NotRequired[str]
|
|
1189
1184
|
|
|
@@ -1206,11 +1201,11 @@ class UpdateApplicationPortalOptionsTypeDef(TypedDict):
|
|
|
1206
1201
|
|
|
1207
1202
|
|
|
1208
1203
|
class ResourceServerConfigTypeDef(TypedDict):
|
|
1209
|
-
Scopes: NotRequired[
|
|
1204
|
+
Scopes: NotRequired[dict[str, ResourceServerScopeDetailsTypeDef]]
|
|
1210
1205
|
|
|
1211
1206
|
|
|
1212
1207
|
class InstanceAccessControlAttributeConfigurationOutputTypeDef(TypedDict):
|
|
1213
|
-
AccessControlAttributes:
|
|
1208
|
+
AccessControlAttributes: list[AccessControlAttributeOutputTypeDef]
|
|
1214
1209
|
|
|
1215
1210
|
|
|
1216
1211
|
class InstanceAccessControlAttributeConfigurationTypeDef(TypedDict):
|
|
@@ -1246,8 +1241,8 @@ AuthenticationMethodUnionTypeDef = Union[
|
|
|
1246
1241
|
class GrantOutputTypeDef(TypedDict):
|
|
1247
1242
|
AuthorizationCode: NotRequired[AuthorizationCodeGrantOutputTypeDef]
|
|
1248
1243
|
JwtBearer: NotRequired[JwtBearerGrantOutputTypeDef]
|
|
1249
|
-
RefreshToken: NotRequired[
|
|
1250
|
-
TokenExchange: NotRequired[
|
|
1244
|
+
RefreshToken: NotRequired[dict[str, Any]]
|
|
1245
|
+
TokenExchange: NotRequired[dict[str, Any]]
|
|
1251
1246
|
|
|
1252
1247
|
|
|
1253
1248
|
class GrantTypeDef(TypedDict):
|
|
@@ -1355,7 +1350,7 @@ InstanceAccessControlAttributeConfigurationUnionTypeDef = Union[
|
|
|
1355
1350
|
|
|
1356
1351
|
|
|
1357
1352
|
class ListApplicationAuthenticationMethodsResponseTypeDef(TypedDict):
|
|
1358
|
-
AuthenticationMethods:
|
|
1353
|
+
AuthenticationMethods: list[AuthenticationMethodItemTypeDef]
|
|
1359
1354
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1360
1355
|
NextToken: NotRequired[str]
|
|
1361
1356
|
|
|
@@ -1380,13 +1375,13 @@ GrantUnionTypeDef = Union[GrantTypeDef, GrantOutputTypeDef]
|
|
|
1380
1375
|
|
|
1381
1376
|
|
|
1382
1377
|
class ListApplicationsResponseTypeDef(TypedDict):
|
|
1383
|
-
Applications:
|
|
1378
|
+
Applications: list[ApplicationTypeDef]
|
|
1384
1379
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1385
1380
|
NextToken: NotRequired[str]
|
|
1386
1381
|
|
|
1387
1382
|
|
|
1388
1383
|
class ListApplicationProvidersResponseTypeDef(TypedDict):
|
|
1389
|
-
ApplicationProviders:
|
|
1384
|
+
ApplicationProviders: list[ApplicationProviderTypeDef]
|
|
1390
1385
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1391
1386
|
NextToken: NotRequired[str]
|
|
1392
1387
|
|
|
@@ -1406,7 +1401,7 @@ class UpdateInstanceAccessControlAttributeConfigurationRequestTypeDef(TypedDict)
|
|
|
1406
1401
|
|
|
1407
1402
|
|
|
1408
1403
|
class ListApplicationGrantsResponseTypeDef(TypedDict):
|
|
1409
|
-
Grants:
|
|
1404
|
+
Grants: list[GrantItemTypeDef]
|
|
1410
1405
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1411
1406
|
NextToken: NotRequired[str]
|
|
1412
1407
|
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -37,12 +38,6 @@ from .literals import (
|
|
|
37
38
|
UserBackgroundSessionApplicationStatusType,
|
|
38
39
|
)
|
|
39
40
|
|
|
40
|
-
if sys.version_info >= (3, 9):
|
|
41
|
-
from builtins import dict as Dict
|
|
42
|
-
from builtins import list as List
|
|
43
|
-
from collections.abc import Mapping, Sequence
|
|
44
|
-
else:
|
|
45
|
-
from typing import Dict, List, Mapping, Sequence
|
|
46
41
|
if sys.version_info >= (3, 12):
|
|
47
42
|
from typing import Literal, NotRequired, TypedDict
|
|
48
43
|
else:
|
|
@@ -251,7 +246,7 @@ __all__ = (
|
|
|
251
246
|
)
|
|
252
247
|
|
|
253
248
|
class AccessControlAttributeValueOutputTypeDef(TypedDict):
|
|
254
|
-
Source:
|
|
249
|
+
Source: list[str]
|
|
255
250
|
|
|
256
251
|
class AccessControlAttributeValueTypeDef(TypedDict):
|
|
257
252
|
Source: Sequence[str]
|
|
@@ -313,20 +308,20 @@ class AttachedManagedPolicyTypeDef(TypedDict):
|
|
|
313
308
|
Arn: NotRequired[str]
|
|
314
309
|
|
|
315
310
|
class IamAuthenticationMethodOutputTypeDef(TypedDict):
|
|
316
|
-
ActorPolicy:
|
|
311
|
+
ActorPolicy: dict[str, Any]
|
|
317
312
|
|
|
318
313
|
class IamAuthenticationMethodTypeDef(TypedDict):
|
|
319
314
|
ActorPolicy: Mapping[str, Any]
|
|
320
315
|
|
|
321
316
|
class AuthorizationCodeGrantOutputTypeDef(TypedDict):
|
|
322
|
-
RedirectUris: NotRequired[
|
|
317
|
+
RedirectUris: NotRequired[list[str]]
|
|
323
318
|
|
|
324
319
|
class AuthorizationCodeGrantTypeDef(TypedDict):
|
|
325
320
|
RedirectUris: NotRequired[Sequence[str]]
|
|
326
321
|
|
|
327
322
|
class AuthorizedTokenIssuerOutputTypeDef(TypedDict):
|
|
328
323
|
TrustedTokenIssuerArn: NotRequired[str]
|
|
329
|
-
AuthorizedAudiences: NotRequired[
|
|
324
|
+
AuthorizedAudiences: NotRequired[list[str]]
|
|
330
325
|
|
|
331
326
|
class AuthorizedTokenIssuerTypeDef(TypedDict):
|
|
332
327
|
TrustedTokenIssuerArn: NotRequired[str]
|
|
@@ -343,7 +338,7 @@ class CreateAccountAssignmentRequestTypeDef(TypedDict):
|
|
|
343
338
|
class ResponseMetadataTypeDef(TypedDict):
|
|
344
339
|
RequestId: str
|
|
345
340
|
HTTPStatusCode: int
|
|
346
|
-
HTTPHeaders:
|
|
341
|
+
HTTPHeaders: dict[str, str]
|
|
347
342
|
RetryAttempts: int
|
|
348
343
|
HostId: NotRequired[str]
|
|
349
344
|
|
|
@@ -539,7 +534,7 @@ class ListApplicationAccessScopesRequestTypeDef(TypedDict):
|
|
|
539
534
|
|
|
540
535
|
class ScopeDetailsTypeDef(TypedDict):
|
|
541
536
|
Scope: str
|
|
542
|
-
AuthorizedTargets: NotRequired[
|
|
537
|
+
AuthorizedTargets: NotRequired[list[str]]
|
|
543
538
|
|
|
544
539
|
class ListApplicationAssignmentsFilterTypeDef(TypedDict):
|
|
545
540
|
ApplicationArn: NotRequired[str]
|
|
@@ -697,7 +692,7 @@ class AuthenticationMethodTypeDef(TypedDict):
|
|
|
697
692
|
Iam: NotRequired[IamAuthenticationMethodTypeDef]
|
|
698
693
|
|
|
699
694
|
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
700
|
-
AuthorizedTokenIssuers: NotRequired[
|
|
695
|
+
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
701
696
|
|
|
702
697
|
class JwtBearerGrantTypeDef(TypedDict):
|
|
703
698
|
AuthorizedTokenIssuers: NotRequired[Sequence[AuthorizedTokenIssuerTypeDef]]
|
|
@@ -741,7 +736,7 @@ class EmptyResponseMetadataTypeDef(TypedDict):
|
|
|
741
736
|
|
|
742
737
|
class GetApplicationAccessScopeResponseTypeDef(TypedDict):
|
|
743
738
|
Scope: str
|
|
744
|
-
AuthorizedTargets:
|
|
739
|
+
AuthorizedTargets: list[str]
|
|
745
740
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
746
741
|
|
|
747
742
|
class GetApplicationAssignmentConfigurationResponseTypeDef(TypedDict):
|
|
@@ -757,57 +752,57 @@ class GetInlinePolicyForPermissionSetResponseTypeDef(TypedDict):
|
|
|
757
752
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
758
753
|
|
|
759
754
|
class ListAccountAssignmentCreationStatusResponseTypeDef(TypedDict):
|
|
760
|
-
AccountAssignmentsCreationStatus:
|
|
755
|
+
AccountAssignmentsCreationStatus: list[AccountAssignmentOperationStatusMetadataTypeDef]
|
|
761
756
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
762
757
|
NextToken: NotRequired[str]
|
|
763
758
|
|
|
764
759
|
class ListAccountAssignmentDeletionStatusResponseTypeDef(TypedDict):
|
|
765
|
-
AccountAssignmentsDeletionStatus:
|
|
760
|
+
AccountAssignmentsDeletionStatus: list[AccountAssignmentOperationStatusMetadataTypeDef]
|
|
766
761
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
767
762
|
NextToken: NotRequired[str]
|
|
768
763
|
|
|
769
764
|
class ListAccountAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
770
|
-
AccountAssignments:
|
|
765
|
+
AccountAssignments: list[AccountAssignmentForPrincipalTypeDef]
|
|
771
766
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
772
767
|
NextToken: NotRequired[str]
|
|
773
768
|
|
|
774
769
|
class ListAccountAssignmentsResponseTypeDef(TypedDict):
|
|
775
|
-
AccountAssignments:
|
|
770
|
+
AccountAssignments: list[AccountAssignmentTypeDef]
|
|
776
771
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
777
772
|
NextToken: NotRequired[str]
|
|
778
773
|
|
|
779
774
|
class ListAccountsForProvisionedPermissionSetResponseTypeDef(TypedDict):
|
|
780
|
-
AccountIds:
|
|
775
|
+
AccountIds: list[str]
|
|
781
776
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
782
777
|
NextToken: NotRequired[str]
|
|
783
778
|
|
|
784
779
|
class ListApplicationAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
785
|
-
ApplicationAssignments:
|
|
780
|
+
ApplicationAssignments: list[ApplicationAssignmentForPrincipalTypeDef]
|
|
786
781
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
787
782
|
NextToken: NotRequired[str]
|
|
788
783
|
|
|
789
784
|
class ListApplicationAssignmentsResponseTypeDef(TypedDict):
|
|
790
|
-
ApplicationAssignments:
|
|
785
|
+
ApplicationAssignments: list[ApplicationAssignmentTypeDef]
|
|
791
786
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
792
787
|
NextToken: NotRequired[str]
|
|
793
788
|
|
|
794
789
|
class ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef(TypedDict):
|
|
795
|
-
CustomerManagedPolicyReferences:
|
|
790
|
+
CustomerManagedPolicyReferences: list[CustomerManagedPolicyReferenceTypeDef]
|
|
796
791
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
797
792
|
NextToken: NotRequired[str]
|
|
798
793
|
|
|
799
794
|
class ListManagedPoliciesInPermissionSetResponseTypeDef(TypedDict):
|
|
800
|
-
AttachedManagedPolicies:
|
|
795
|
+
AttachedManagedPolicies: list[AttachedManagedPolicyTypeDef]
|
|
801
796
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
802
797
|
NextToken: NotRequired[str]
|
|
803
798
|
|
|
804
799
|
class ListPermissionSetsProvisionedToAccountResponseTypeDef(TypedDict):
|
|
805
|
-
PermissionSets:
|
|
800
|
+
PermissionSets: list[str]
|
|
806
801
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
807
802
|
NextToken: NotRequired[str]
|
|
808
803
|
|
|
809
804
|
class ListPermissionSetsResponseTypeDef(TypedDict):
|
|
810
|
-
PermissionSets:
|
|
805
|
+
PermissionSets: list[str]
|
|
811
806
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
812
807
|
NextToken: NotRequired[str]
|
|
813
808
|
|
|
@@ -825,7 +820,7 @@ class CreatePermissionSetRequestTypeDef(TypedDict):
|
|
|
825
820
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
826
821
|
|
|
827
822
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
828
|
-
Tags:
|
|
823
|
+
Tags: list[TagTypeDef]
|
|
829
824
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
830
825
|
NextToken: NotRequired[str]
|
|
831
826
|
|
|
@@ -867,7 +862,7 @@ class UpdateInstanceRequestTypeDef(TypedDict):
|
|
|
867
862
|
EncryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
868
863
|
|
|
869
864
|
class ListInstancesResponseTypeDef(TypedDict):
|
|
870
|
-
Instances:
|
|
865
|
+
Instances: list[InstanceMetadataTypeDef]
|
|
871
866
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
872
867
|
NextToken: NotRequired[str]
|
|
873
868
|
|
|
@@ -983,7 +978,7 @@ class ListAccountAssignmentsForPrincipalRequestTypeDef(TypedDict):
|
|
|
983
978
|
MaxResults: NotRequired[int]
|
|
984
979
|
|
|
985
980
|
class ListApplicationAccessScopesResponseTypeDef(TypedDict):
|
|
986
|
-
Scopes:
|
|
981
|
+
Scopes: list[ScopeDetailsTypeDef]
|
|
987
982
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
988
983
|
NextToken: NotRequired[str]
|
|
989
984
|
|
|
@@ -1014,12 +1009,12 @@ class ListApplicationsRequestTypeDef(TypedDict):
|
|
|
1014
1009
|
Filter: NotRequired[ListApplicationsFilterTypeDef]
|
|
1015
1010
|
|
|
1016
1011
|
class ListPermissionSetProvisioningStatusResponseTypeDef(TypedDict):
|
|
1017
|
-
PermissionSetsProvisioningStatus:
|
|
1012
|
+
PermissionSetsProvisioningStatus: list[PermissionSetProvisioningStatusMetadataTypeDef]
|
|
1018
1013
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1019
1014
|
NextToken: NotRequired[str]
|
|
1020
1015
|
|
|
1021
1016
|
class ListTrustedTokenIssuersResponseTypeDef(TypedDict):
|
|
1022
|
-
TrustedTokenIssuers:
|
|
1017
|
+
TrustedTokenIssuers: list[TrustedTokenIssuerMetadataTypeDef]
|
|
1023
1018
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1024
1019
|
NextToken: NotRequired[str]
|
|
1025
1020
|
|
|
@@ -1037,10 +1032,10 @@ class UpdateApplicationPortalOptionsTypeDef(TypedDict):
|
|
|
1037
1032
|
SignInOptions: NotRequired[SignInOptionsTypeDef]
|
|
1038
1033
|
|
|
1039
1034
|
class ResourceServerConfigTypeDef(TypedDict):
|
|
1040
|
-
Scopes: NotRequired[
|
|
1035
|
+
Scopes: NotRequired[dict[str, ResourceServerScopeDetailsTypeDef]]
|
|
1041
1036
|
|
|
1042
1037
|
class InstanceAccessControlAttributeConfigurationOutputTypeDef(TypedDict):
|
|
1043
|
-
AccessControlAttributes:
|
|
1038
|
+
AccessControlAttributes: list[AccessControlAttributeOutputTypeDef]
|
|
1044
1039
|
|
|
1045
1040
|
class InstanceAccessControlAttributeConfigurationTypeDef(TypedDict):
|
|
1046
1041
|
AccessControlAttributes: Sequence[AccessControlAttributeTypeDef]
|
|
@@ -1069,8 +1064,8 @@ AuthenticationMethodUnionTypeDef = Union[
|
|
|
1069
1064
|
class GrantOutputTypeDef(TypedDict):
|
|
1070
1065
|
AuthorizationCode: NotRequired[AuthorizationCodeGrantOutputTypeDef]
|
|
1071
1066
|
JwtBearer: NotRequired[JwtBearerGrantOutputTypeDef]
|
|
1072
|
-
RefreshToken: NotRequired[
|
|
1073
|
-
TokenExchange: NotRequired[
|
|
1067
|
+
RefreshToken: NotRequired[dict[str, Any]]
|
|
1068
|
+
TokenExchange: NotRequired[dict[str, Any]]
|
|
1074
1069
|
|
|
1075
1070
|
class GrantTypeDef(TypedDict):
|
|
1076
1071
|
AuthorizationCode: NotRequired[AuthorizationCodeGrantTypeDef]
|
|
@@ -1165,7 +1160,7 @@ InstanceAccessControlAttributeConfigurationUnionTypeDef = Union[
|
|
|
1165
1160
|
]
|
|
1166
1161
|
|
|
1167
1162
|
class ListApplicationAuthenticationMethodsResponseTypeDef(TypedDict):
|
|
1168
|
-
AuthenticationMethods:
|
|
1163
|
+
AuthenticationMethods: list[AuthenticationMethodItemTypeDef]
|
|
1169
1164
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1170
1165
|
NextToken: NotRequired[str]
|
|
1171
1166
|
|
|
@@ -1185,12 +1180,12 @@ class GrantItemTypeDef(TypedDict):
|
|
|
1185
1180
|
GrantUnionTypeDef = Union[GrantTypeDef, GrantOutputTypeDef]
|
|
1186
1181
|
|
|
1187
1182
|
class ListApplicationsResponseTypeDef(TypedDict):
|
|
1188
|
-
Applications:
|
|
1183
|
+
Applications: list[ApplicationTypeDef]
|
|
1189
1184
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1190
1185
|
NextToken: NotRequired[str]
|
|
1191
1186
|
|
|
1192
1187
|
class ListApplicationProvidersResponseTypeDef(TypedDict):
|
|
1193
|
-
ApplicationProviders:
|
|
1188
|
+
ApplicationProviders: list[ApplicationProviderTypeDef]
|
|
1194
1189
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1195
1190
|
NextToken: NotRequired[str]
|
|
1196
1191
|
|
|
@@ -1207,7 +1202,7 @@ class UpdateInstanceAccessControlAttributeConfigurationRequestTypeDef(TypedDict)
|
|
|
1207
1202
|
)
|
|
1208
1203
|
|
|
1209
1204
|
class ListApplicationGrantsResponseTypeDef(TypedDict):
|
|
1210
|
-
Grants:
|
|
1205
|
+
Grants: list[GrantItemTypeDef]
|
|
1211
1206
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1212
1207
|
NextToken: NotRequired[str]
|
|
1213
1208
|
|
mypy_boto3_sso_admin/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sso-admin
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 SSOAdmin 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 SSOAdmin 1.41.0 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,sso-admin,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="mypy-boto3-sso-admin"></a>
|
|
49
35
|
|
|
@@ -56,7 +42,7 @@ Dynamic: summary
|
|
|
56
42
|
|
|
57
43
|

|
|
58
44
|
|
|
59
|
-
Type annotations for [boto3 SSOAdmin 1.
|
|
45
|
+
Type annotations for [boto3 SSOAdmin 1.41.0](https://pypi.org/project/boto3/)
|
|
60
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +51,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
51
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
52
|
|
|
67
53
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
55
|
|
|
70
56
|
More information can be found on
|
|
71
57
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -118,7 +104,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
104
|
isolation.
|
|
119
105
|
|
|
120
106
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
107
|
+
`uvx --with 'boto3==1.41.0' mypy-boto3-builder`
|
|
122
108
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
109
|
3. Add `SSOAdmin` service.
|
|
124
110
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_sso_admin/__init__.py,sha256=K7ei0XSTTdtdRK463sfNnrXBe78mhLne49ZC5SbnGRI,6248
|
|
2
|
+
mypy_boto3_sso_admin/__init__.pyi,sha256=ZZdfLxuG00N7IH_46b44bzdMh8QrPSD7IEFqqZCDlCg,6247
|
|
3
|
+
mypy_boto3_sso_admin/__main__.py,sha256=g-n-enPi1KXPjDmDuUNAczfKRIaOw36FqvtJsiAJXPE,987
|
|
4
|
+
mypy_boto3_sso_admin/client.py,sha256=Sg8y9_9a4P3Ua-YBvh-v9oyE_8ROkvh9Mm9wM1XkJvE,65638
|
|
5
|
+
mypy_boto3_sso_admin/client.pyi,sha256=zuQ8_F7WBDxkW0UJ4iw1n5EL09IYI3_t1C_FHXB2KPw,65635
|
|
6
|
+
mypy_boto3_sso_admin/literals.py,sha256=K6xyRKsfXGeZ8nkfgxi9Oue_5inRkJcbpsY7dH07xnQ,15120
|
|
7
|
+
mypy_boto3_sso_admin/literals.pyi,sha256=0obF_fYWQ289HhxqZQa0VzcwzL3jHudL6yeG2WB86NQ,15118
|
|
8
|
+
mypy_boto3_sso_admin/paginator.py,sha256=2LfYXUtC0D6BGO2psp5TFtAquuecOMgj6Bhsyfg8KEQ,33892
|
|
9
|
+
mypy_boto3_sso_admin/paginator.pyi,sha256=ZfdhZZNtLU8wpAw0bZTkxcBoi82Sb9WZtP_s0mF3pQA,33831
|
|
10
|
+
mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sso_admin/type_defs.py,sha256=HNXsml5QhdELTOce2fgccGjlEBpzVTukj7LFKtz8EEk,44189
|
|
12
|
+
mypy_boto3_sso_admin/type_defs.pyi,sha256=MqPwHj6wGjpmLBp9-Xato_Zk8CFVmwIYlKhS7m0uU6g,43989
|
|
13
|
+
mypy_boto3_sso_admin/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
+
mypy_boto3_sso_admin-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_sso_admin-1.41.0.dist-info/METADATA,sha256=tQty0qCnPlrP_nBNxoWfEWUswRCHFYw_jtPXic2jWko,18449
|
|
16
|
+
mypy_boto3_sso_admin-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_sso_admin-1.41.0.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
|
|
18
|
+
mypy_boto3_sso_admin-1.41.0.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sso_admin/__init__.py,sha256=K7ei0XSTTdtdRK463sfNnrXBe78mhLne49ZC5SbnGRI,6248
|
|
2
|
-
mypy_boto3_sso_admin/__init__.pyi,sha256=ZZdfLxuG00N7IH_46b44bzdMh8QrPSD7IEFqqZCDlCg,6247
|
|
3
|
-
mypy_boto3_sso_admin/__main__.py,sha256=QIs5SThiXgwsl7N_gvhDZq2aeMa2ltcVn1dx2BWqFBM,990
|
|
4
|
-
mypy_boto3_sso_admin/client.py,sha256=qBD5Jvsjcr1oWajwyKrTpww6gH1W_lMBA8DklGraw44,65798
|
|
5
|
-
mypy_boto3_sso_admin/client.pyi,sha256=QfQ9AZ0kqhmx_gEY9dAwr1Rv2xR0Hh0wwfu00n5EW0A,65795
|
|
6
|
-
mypy_boto3_sso_admin/literals.py,sha256=pFFg7xfFBfj8iu-0s0HMVPpKeO3jMeanj-_jZ1xKQCM,15179
|
|
7
|
-
mypy_boto3_sso_admin/literals.pyi,sha256=OWu4FF5aBPu7-m1wt_0UUu8LUORR393utZMnr_ulqB8,15177
|
|
8
|
-
mypy_boto3_sso_admin/paginator.py,sha256=2LfYXUtC0D6BGO2psp5TFtAquuecOMgj6Bhsyfg8KEQ,33892
|
|
9
|
-
mypy_boto3_sso_admin/paginator.pyi,sha256=ZfdhZZNtLU8wpAw0bZTkxcBoi82Sb9WZtP_s0mF3pQA,33831
|
|
10
|
-
mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sso_admin/type_defs.py,sha256=RzMOoUESlVoeK8zbUG1JKtoVVpW3h9gk2ardCU2K6aw,44359
|
|
12
|
-
mypy_boto3_sso_admin/type_defs.pyi,sha256=axpn88laDVONk039S9Dbu2oNNHDHzGdseAO-3FADPr8,44159
|
|
13
|
-
mypy_boto3_sso_admin/version.py,sha256=NzXluJrrNARU_IqVC98fZ7B1YuUJkewLTY2LI9mZCDQ,93
|
|
14
|
-
mypy_boto3_sso_admin-1.40.60.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_sso_admin-1.40.60.dist-info/METADATA,sha256=dNibyjgyuU-uSHmRPs9SYYVXEhnMl7sNYPLoslB6tJE,18784
|
|
16
|
-
mypy_boto3_sso_admin-1.40.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
mypy_boto3_sso_admin-1.40.60.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
|
|
18
|
-
mypy_boto3_sso_admin-1.40.60.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sso_admin-1.40.60.dist-info → mypy_boto3_sso_admin-1.41.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|