types-boto3-sso-admin 1.41.0__py3-none-any.whl → 1.42.41__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.
- types_boto3_sso_admin/__init__.py +5 -1
- types_boto3_sso_admin/__init__.pyi +5 -1
- types_boto3_sso_admin/__main__.py +4 -4
- types_boto3_sso_admin/client.py +61 -1
- types_boto3_sso_admin/client.pyi +61 -1
- types_boto3_sso_admin/literals.py +13 -2
- types_boto3_sso_admin/literals.pyi +13 -2
- types_boto3_sso_admin/paginator.py +27 -1
- types_boto3_sso_admin/paginator.pyi +24 -1
- types_boto3_sso_admin/type_defs.py +138 -48
- types_boto3_sso_admin/type_defs.pyi +121 -41
- types_boto3_sso_admin/version.py +2 -2
- {types_boto3_sso_admin-1.41.0.dist-info → types_boto3_sso_admin-1.42.41.dist-info}/METADATA +6 -4
- types_boto3_sso_admin-1.42.41.dist-info/RECORD +18 -0
- {types_boto3_sso_admin-1.41.0.dist-info → types_boto3_sso_admin-1.42.41.dist-info}/WHEEL +1 -1
- {types_boto3_sso_admin-1.41.0.dist-info → types_boto3_sso_admin-1.42.41.dist-info}/licenses/LICENSE +1 -1
- types_boto3_sso_admin-1.41.0.dist-info/RECORD +0 -18
- {types_boto3_sso_admin-1.41.0.dist-info → types_boto3_sso_admin-1.42.41.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ Type annotations for sso-admin service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/paginators/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -30,6 +30,7 @@ Usage::
|
|
|
30
30
|
ListPermissionSetProvisioningStatusPaginator,
|
|
31
31
|
ListPermissionSetsPaginator,
|
|
32
32
|
ListPermissionSetsProvisionedToAccountPaginator,
|
|
33
|
+
ListRegionsPaginator,
|
|
33
34
|
ListTagsForResourcePaginator,
|
|
34
35
|
ListTrustedTokenIssuersPaginator,
|
|
35
36
|
)
|
|
@@ -55,6 +56,7 @@ Usage::
|
|
|
55
56
|
list_permission_set_provisioning_status_paginator: ListPermissionSetProvisioningStatusPaginator = client.get_paginator("list_permission_set_provisioning_status")
|
|
56
57
|
list_permission_sets_paginator: ListPermissionSetsPaginator = client.get_paginator("list_permission_sets")
|
|
57
58
|
list_permission_sets_provisioned_to_account_paginator: ListPermissionSetsProvisionedToAccountPaginator = client.get_paginator("list_permission_sets_provisioned_to_account")
|
|
59
|
+
list_regions_paginator: ListRegionsPaginator = client.get_paginator("list_regions")
|
|
58
60
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
59
61
|
list_trusted_token_issuers_paginator: ListTrustedTokenIssuersPaginator = client.get_paginator("list_trusted_token_issuers")
|
|
60
62
|
```
|
|
@@ -104,6 +106,8 @@ from .type_defs import (
|
|
|
104
106
|
ListPermissionSetsProvisionedToAccountResponseTypeDef,
|
|
105
107
|
ListPermissionSetsRequestPaginateTypeDef,
|
|
106
108
|
ListPermissionSetsResponseTypeDef,
|
|
109
|
+
ListRegionsRequestPaginateTypeDef,
|
|
110
|
+
ListRegionsResponseTypeDef,
|
|
107
111
|
ListTagsForResourceRequestPaginateTypeDef,
|
|
108
112
|
ListTagsForResourceResponseTypeDef,
|
|
109
113
|
ListTrustedTokenIssuersRequestPaginateTypeDef,
|
|
@@ -134,6 +138,7 @@ __all__ = (
|
|
|
134
138
|
"ListPermissionSetProvisioningStatusPaginator",
|
|
135
139
|
"ListPermissionSetsPaginator",
|
|
136
140
|
"ListPermissionSetsProvisionedToAccountPaginator",
|
|
141
|
+
"ListRegionsPaginator",
|
|
137
142
|
"ListTagsForResourcePaginator",
|
|
138
143
|
"ListTrustedTokenIssuersPaginator",
|
|
139
144
|
)
|
|
@@ -501,6 +506,24 @@ class ListPermissionSetsProvisionedToAccountPaginator(
|
|
|
501
506
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/paginators/#listpermissionsetsprovisionedtoaccountpaginator)
|
|
502
507
|
"""
|
|
503
508
|
|
|
509
|
+
if TYPE_CHECKING:
|
|
510
|
+
_ListRegionsPaginatorBase = Paginator[ListRegionsResponseTypeDef]
|
|
511
|
+
else:
|
|
512
|
+
_ListRegionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
513
|
+
|
|
514
|
+
class ListRegionsPaginator(_ListRegionsPaginatorBase):
|
|
515
|
+
"""
|
|
516
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/paginator/ListRegions.html#SSOAdmin.Paginator.ListRegions)
|
|
517
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/paginators/#listregionspaginator)
|
|
518
|
+
"""
|
|
519
|
+
def paginate( # type: ignore[override]
|
|
520
|
+
self, **kwargs: Unpack[ListRegionsRequestPaginateTypeDef]
|
|
521
|
+
) -> PageIterator[ListRegionsResponseTypeDef]:
|
|
522
|
+
"""
|
|
523
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/paginator/ListRegions.html#SSOAdmin.Paginator.ListRegions.paginate)
|
|
524
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/paginators/#listregionspaginator)
|
|
525
|
+
"""
|
|
526
|
+
|
|
504
527
|
if TYPE_CHECKING:
|
|
505
528
|
_ListTagsForResourcePaginatorBase = Paginator[ListTagsForResourceResponseTypeDef]
|
|
506
529
|
else:
|
|
@@ -3,7 +3,7 @@ Type annotations for sso-admin service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -33,6 +33,7 @@ from .literals import (
|
|
|
33
33
|
PrincipalTypeType,
|
|
34
34
|
ProvisioningStatusType,
|
|
35
35
|
ProvisionTargetTypeType,
|
|
36
|
+
RegionStatusType,
|
|
36
37
|
SignInOriginType,
|
|
37
38
|
StatusValuesType,
|
|
38
39
|
UserBackgroundSessionApplicationStatusType,
|
|
@@ -53,6 +54,8 @@ __all__ = (
|
|
|
53
54
|
"AccountAssignmentOperationStatusMetadataTypeDef",
|
|
54
55
|
"AccountAssignmentOperationStatusTypeDef",
|
|
55
56
|
"AccountAssignmentTypeDef",
|
|
57
|
+
"AddRegionRequestTypeDef",
|
|
58
|
+
"AddRegionResponseTypeDef",
|
|
56
59
|
"ApplicationAssignmentForPrincipalTypeDef",
|
|
57
60
|
"ApplicationAssignmentTypeDef",
|
|
58
61
|
"ApplicationProviderTypeDef",
|
|
@@ -112,6 +115,8 @@ __all__ = (
|
|
|
112
115
|
"DescribePermissionSetProvisioningStatusResponseTypeDef",
|
|
113
116
|
"DescribePermissionSetRequestTypeDef",
|
|
114
117
|
"DescribePermissionSetResponseTypeDef",
|
|
118
|
+
"DescribeRegionRequestTypeDef",
|
|
119
|
+
"DescribeRegionResponseTypeDef",
|
|
115
120
|
"DescribeTrustedTokenIssuerRequestTypeDef",
|
|
116
121
|
"DescribeTrustedTokenIssuerResponseTypeDef",
|
|
117
122
|
"DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef",
|
|
@@ -203,6 +208,9 @@ __all__ = (
|
|
|
203
208
|
"ListPermissionSetsRequestPaginateTypeDef",
|
|
204
209
|
"ListPermissionSetsRequestTypeDef",
|
|
205
210
|
"ListPermissionSetsResponseTypeDef",
|
|
211
|
+
"ListRegionsRequestPaginateTypeDef",
|
|
212
|
+
"ListRegionsRequestTypeDef",
|
|
213
|
+
"ListRegionsResponseTypeDef",
|
|
206
214
|
"ListTagsForResourceRequestPaginateTypeDef",
|
|
207
215
|
"ListTagsForResourceRequestTypeDef",
|
|
208
216
|
"ListTagsForResourceResponseTypeDef",
|
|
@@ -227,6 +235,9 @@ __all__ = (
|
|
|
227
235
|
"PutApplicationSessionConfigurationRequestTypeDef",
|
|
228
236
|
"PutInlinePolicyToPermissionSetRequestTypeDef",
|
|
229
237
|
"PutPermissionsBoundaryToPermissionSetRequestTypeDef",
|
|
238
|
+
"RegionMetadataTypeDef",
|
|
239
|
+
"RemoveRegionRequestTypeDef",
|
|
240
|
+
"RemoveRegionResponseTypeDef",
|
|
230
241
|
"ResourceServerConfigTypeDef",
|
|
231
242
|
"ResourceServerScopeDetailsTypeDef",
|
|
232
243
|
"ResponseMetadataTypeDef",
|
|
@@ -287,6 +298,23 @@ class AccountAssignmentTypeDef(TypedDict):
|
|
|
287
298
|
PrincipalId: NotRequired[str]
|
|
288
299
|
|
|
289
300
|
|
|
301
|
+
AddRegionRequestTypeDef = TypedDict(
|
|
302
|
+
"AddRegionRequestTypeDef",
|
|
303
|
+
{
|
|
304
|
+
"InstanceArn": str,
|
|
305
|
+
"RegionName": str,
|
|
306
|
+
},
|
|
307
|
+
)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
311
|
+
RequestId: str
|
|
312
|
+
HTTPStatusCode: int
|
|
313
|
+
HTTPHeaders: dict[str, str]
|
|
314
|
+
RetryAttempts: int
|
|
315
|
+
HostId: NotRequired[str]
|
|
316
|
+
|
|
317
|
+
|
|
290
318
|
class ApplicationAssignmentForPrincipalTypeDef(TypedDict):
|
|
291
319
|
ApplicationArn: NotRequired[str]
|
|
292
320
|
PrincipalId: NotRequired[str]
|
|
@@ -356,14 +384,6 @@ class CreateAccountAssignmentRequestTypeDef(TypedDict):
|
|
|
356
384
|
PrincipalId: str
|
|
357
385
|
|
|
358
386
|
|
|
359
|
-
class ResponseMetadataTypeDef(TypedDict):
|
|
360
|
-
RequestId: str
|
|
361
|
-
HTTPStatusCode: int
|
|
362
|
-
HTTPHeaders: dict[str, str]
|
|
363
|
-
RetryAttempts: int
|
|
364
|
-
HostId: NotRequired[str]
|
|
365
|
-
|
|
366
|
-
|
|
367
387
|
class CreateApplicationAssignmentRequestTypeDef(TypedDict):
|
|
368
388
|
ApplicationArn: str
|
|
369
389
|
PrincipalId: str
|
|
@@ -503,6 +523,15 @@ class DescribePermissionSetRequestTypeDef(TypedDict):
|
|
|
503
523
|
PermissionSetArn: str
|
|
504
524
|
|
|
505
525
|
|
|
526
|
+
DescribeRegionRequestTypeDef = TypedDict(
|
|
527
|
+
"DescribeRegionRequestTypeDef",
|
|
528
|
+
{
|
|
529
|
+
"InstanceArn": str,
|
|
530
|
+
"RegionName": str,
|
|
531
|
+
},
|
|
532
|
+
)
|
|
533
|
+
|
|
534
|
+
|
|
506
535
|
class DescribeTrustedTokenIssuerRequestTypeDef(TypedDict):
|
|
507
536
|
TrustedTokenIssuerArn: str
|
|
508
537
|
|
|
@@ -671,6 +700,23 @@ class ListPermissionSetsRequestTypeDef(TypedDict):
|
|
|
671
700
|
MaxResults: NotRequired[int]
|
|
672
701
|
|
|
673
702
|
|
|
703
|
+
class ListRegionsRequestTypeDef(TypedDict):
|
|
704
|
+
InstanceArn: str
|
|
705
|
+
MaxResults: NotRequired[int]
|
|
706
|
+
NextToken: NotRequired[str]
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
RegionMetadataTypeDef = TypedDict(
|
|
710
|
+
"RegionMetadataTypeDef",
|
|
711
|
+
{
|
|
712
|
+
"RegionName": NotRequired[str],
|
|
713
|
+
"Status": NotRequired[RegionStatusType],
|
|
714
|
+
"AddedDate": NotRequired[datetime],
|
|
715
|
+
"IsPrimaryRegion": NotRequired[bool],
|
|
716
|
+
},
|
|
717
|
+
)
|
|
718
|
+
|
|
719
|
+
|
|
674
720
|
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
675
721
|
ResourceArn: str
|
|
676
722
|
InstanceArn: NotRequired[str]
|
|
@@ -736,6 +782,15 @@ class PutInlinePolicyToPermissionSetRequestTypeDef(TypedDict):
|
|
|
736
782
|
InlinePolicy: str
|
|
737
783
|
|
|
738
784
|
|
|
785
|
+
RemoveRegionRequestTypeDef = TypedDict(
|
|
786
|
+
"RemoveRegionRequestTypeDef",
|
|
787
|
+
{
|
|
788
|
+
"InstanceArn": str,
|
|
789
|
+
"RegionName": str,
|
|
790
|
+
},
|
|
791
|
+
)
|
|
792
|
+
|
|
793
|
+
|
|
739
794
|
class ResourceServerScopeDetailsTypeDef(TypedDict):
|
|
740
795
|
LongDescription: NotRequired[str]
|
|
741
796
|
DetailedTitle: NotRequired[str]
|
|
@@ -765,37 +820,9 @@ class AccessControlAttributeTypeDef(TypedDict):
|
|
|
765
820
|
Value: AccessControlAttributeValueTypeDef
|
|
766
821
|
|
|
767
822
|
|
|
768
|
-
class
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
class DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef(TypedDict):
|
|
775
|
-
InstanceArn: str
|
|
776
|
-
PermissionSetArn: str
|
|
777
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
class PermissionsBoundaryTypeDef(TypedDict):
|
|
781
|
-
CustomerManagedPolicyReference: NotRequired[CustomerManagedPolicyReferenceTypeDef]
|
|
782
|
-
ManagedPolicyArn: NotRequired[str]
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
class AuthenticationMethodOutputTypeDef(TypedDict):
|
|
786
|
-
Iam: NotRequired[IamAuthenticationMethodOutputTypeDef]
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
class AuthenticationMethodTypeDef(TypedDict):
|
|
790
|
-
Iam: NotRequired[IamAuthenticationMethodTypeDef]
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
794
|
-
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
class JwtBearerGrantTypeDef(TypedDict):
|
|
798
|
-
AuthorizedTokenIssuers: NotRequired[Sequence[AuthorizedTokenIssuerTypeDef]]
|
|
823
|
+
class AddRegionResponseTypeDef(TypedDict):
|
|
824
|
+
Status: RegionStatusType
|
|
825
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
799
826
|
|
|
800
827
|
|
|
801
828
|
class CreateAccountAssignmentResponseTypeDef(TypedDict):
|
|
@@ -840,6 +867,18 @@ class DescribeApplicationAssignmentResponseTypeDef(TypedDict):
|
|
|
840
867
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
841
868
|
|
|
842
869
|
|
|
870
|
+
DescribeRegionResponseTypeDef = TypedDict(
|
|
871
|
+
"DescribeRegionResponseTypeDef",
|
|
872
|
+
{
|
|
873
|
+
"RegionName": str,
|
|
874
|
+
"Status": RegionStatusType,
|
|
875
|
+
"AddedDate": datetime,
|
|
876
|
+
"IsPrimaryRegion": bool,
|
|
877
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
878
|
+
},
|
|
879
|
+
)
|
|
880
|
+
|
|
881
|
+
|
|
843
882
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
844
883
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
845
884
|
|
|
@@ -895,6 +934,23 @@ class ListAccountsForProvisionedPermissionSetResponseTypeDef(TypedDict):
|
|
|
895
934
|
NextToken: NotRequired[str]
|
|
896
935
|
|
|
897
936
|
|
|
937
|
+
class ListPermissionSetsProvisionedToAccountResponseTypeDef(TypedDict):
|
|
938
|
+
PermissionSets: list[str]
|
|
939
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
940
|
+
NextToken: NotRequired[str]
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
class ListPermissionSetsResponseTypeDef(TypedDict):
|
|
944
|
+
PermissionSets: list[str]
|
|
945
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
946
|
+
NextToken: NotRequired[str]
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
class RemoveRegionResponseTypeDef(TypedDict):
|
|
950
|
+
Status: RegionStatusType
|
|
951
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
952
|
+
|
|
953
|
+
|
|
898
954
|
class ListApplicationAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
899
955
|
ApplicationAssignments: list[ApplicationAssignmentForPrincipalTypeDef]
|
|
900
956
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -907,28 +963,49 @@ class ListApplicationAssignmentsResponseTypeDef(TypedDict):
|
|
|
907
963
|
NextToken: NotRequired[str]
|
|
908
964
|
|
|
909
965
|
|
|
966
|
+
class AttachCustomerManagedPolicyReferenceToPermissionSetRequestTypeDef(TypedDict):
|
|
967
|
+
InstanceArn: str
|
|
968
|
+
PermissionSetArn: str
|
|
969
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
class DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef(TypedDict):
|
|
973
|
+
InstanceArn: str
|
|
974
|
+
PermissionSetArn: str
|
|
975
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
976
|
+
|
|
977
|
+
|
|
910
978
|
class ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef(TypedDict):
|
|
911
979
|
CustomerManagedPolicyReferences: list[CustomerManagedPolicyReferenceTypeDef]
|
|
912
980
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
913
981
|
NextToken: NotRequired[str]
|
|
914
982
|
|
|
915
983
|
|
|
984
|
+
class PermissionsBoundaryTypeDef(TypedDict):
|
|
985
|
+
CustomerManagedPolicyReference: NotRequired[CustomerManagedPolicyReferenceTypeDef]
|
|
986
|
+
ManagedPolicyArn: NotRequired[str]
|
|
987
|
+
|
|
988
|
+
|
|
916
989
|
class ListManagedPoliciesInPermissionSetResponseTypeDef(TypedDict):
|
|
917
990
|
AttachedManagedPolicies: list[AttachedManagedPolicyTypeDef]
|
|
918
991
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
919
992
|
NextToken: NotRequired[str]
|
|
920
993
|
|
|
921
994
|
|
|
922
|
-
class
|
|
923
|
-
|
|
924
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
925
|
-
NextToken: NotRequired[str]
|
|
995
|
+
class AuthenticationMethodOutputTypeDef(TypedDict):
|
|
996
|
+
Iam: NotRequired[IamAuthenticationMethodOutputTypeDef]
|
|
926
997
|
|
|
927
998
|
|
|
928
|
-
class
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
999
|
+
class AuthenticationMethodTypeDef(TypedDict):
|
|
1000
|
+
Iam: NotRequired[IamAuthenticationMethodTypeDef]
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
1004
|
+
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
class JwtBearerGrantTypeDef(TypedDict):
|
|
1008
|
+
AuthorizedTokenIssuers: NotRequired[Sequence[AuthorizedTokenIssuerTypeDef]]
|
|
932
1009
|
|
|
933
1010
|
|
|
934
1011
|
class CreateInstanceRequestTypeDef(TypedDict):
|
|
@@ -1107,6 +1184,11 @@ class ListPermissionSetsRequestPaginateTypeDef(TypedDict):
|
|
|
1107
1184
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1108
1185
|
|
|
1109
1186
|
|
|
1187
|
+
class ListRegionsRequestPaginateTypeDef(TypedDict):
|
|
1188
|
+
InstanceArn: str
|
|
1189
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1190
|
+
|
|
1191
|
+
|
|
1110
1192
|
class ListTagsForResourceRequestPaginateTypeDef(TypedDict):
|
|
1111
1193
|
ResourceArn: str
|
|
1112
1194
|
InstanceArn: NotRequired[str]
|
|
@@ -1177,6 +1259,12 @@ class ListPermissionSetProvisioningStatusResponseTypeDef(TypedDict):
|
|
|
1177
1259
|
NextToken: NotRequired[str]
|
|
1178
1260
|
|
|
1179
1261
|
|
|
1262
|
+
class ListRegionsResponseTypeDef(TypedDict):
|
|
1263
|
+
Regions: list[RegionMetadataTypeDef]
|
|
1264
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1265
|
+
NextToken: NotRequired[str]
|
|
1266
|
+
|
|
1267
|
+
|
|
1180
1268
|
class ListTrustedTokenIssuersResponseTypeDef(TypedDict):
|
|
1181
1269
|
TrustedTokenIssuers: list[TrustedTokenIssuerMetadataTypeDef]
|
|
1182
1270
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1285,6 +1373,7 @@ class ApplicationTypeDef(TypedDict):
|
|
|
1285
1373
|
PortalOptions: NotRequired[PortalOptionsTypeDef]
|
|
1286
1374
|
Description: NotRequired[str]
|
|
1287
1375
|
CreatedDate: NotRequired[datetime]
|
|
1376
|
+
CreatedFrom: NotRequired[str]
|
|
1288
1377
|
|
|
1289
1378
|
|
|
1290
1379
|
class CreateApplicationRequestTypeDef(TypedDict):
|
|
@@ -1308,6 +1397,7 @@ class DescribeApplicationResponseTypeDef(TypedDict):
|
|
|
1308
1397
|
PortalOptions: PortalOptionsTypeDef
|
|
1309
1398
|
Description: str
|
|
1310
1399
|
CreatedDate: datetime
|
|
1400
|
+
CreatedFrom: str
|
|
1311
1401
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1312
1402
|
|
|
1313
1403
|
|
|
@@ -3,7 +3,7 @@ Type annotations for sso-admin service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -33,6 +33,7 @@ from .literals import (
|
|
|
33
33
|
PrincipalTypeType,
|
|
34
34
|
ProvisioningStatusType,
|
|
35
35
|
ProvisionTargetTypeType,
|
|
36
|
+
RegionStatusType,
|
|
36
37
|
SignInOriginType,
|
|
37
38
|
StatusValuesType,
|
|
38
39
|
UserBackgroundSessionApplicationStatusType,
|
|
@@ -52,6 +53,8 @@ __all__ = (
|
|
|
52
53
|
"AccountAssignmentOperationStatusMetadataTypeDef",
|
|
53
54
|
"AccountAssignmentOperationStatusTypeDef",
|
|
54
55
|
"AccountAssignmentTypeDef",
|
|
56
|
+
"AddRegionRequestTypeDef",
|
|
57
|
+
"AddRegionResponseTypeDef",
|
|
55
58
|
"ApplicationAssignmentForPrincipalTypeDef",
|
|
56
59
|
"ApplicationAssignmentTypeDef",
|
|
57
60
|
"ApplicationProviderTypeDef",
|
|
@@ -111,6 +114,8 @@ __all__ = (
|
|
|
111
114
|
"DescribePermissionSetProvisioningStatusResponseTypeDef",
|
|
112
115
|
"DescribePermissionSetRequestTypeDef",
|
|
113
116
|
"DescribePermissionSetResponseTypeDef",
|
|
117
|
+
"DescribeRegionRequestTypeDef",
|
|
118
|
+
"DescribeRegionResponseTypeDef",
|
|
114
119
|
"DescribeTrustedTokenIssuerRequestTypeDef",
|
|
115
120
|
"DescribeTrustedTokenIssuerResponseTypeDef",
|
|
116
121
|
"DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef",
|
|
@@ -202,6 +207,9 @@ __all__ = (
|
|
|
202
207
|
"ListPermissionSetsRequestPaginateTypeDef",
|
|
203
208
|
"ListPermissionSetsRequestTypeDef",
|
|
204
209
|
"ListPermissionSetsResponseTypeDef",
|
|
210
|
+
"ListRegionsRequestPaginateTypeDef",
|
|
211
|
+
"ListRegionsRequestTypeDef",
|
|
212
|
+
"ListRegionsResponseTypeDef",
|
|
205
213
|
"ListTagsForResourceRequestPaginateTypeDef",
|
|
206
214
|
"ListTagsForResourceRequestTypeDef",
|
|
207
215
|
"ListTagsForResourceResponseTypeDef",
|
|
@@ -226,6 +234,9 @@ __all__ = (
|
|
|
226
234
|
"PutApplicationSessionConfigurationRequestTypeDef",
|
|
227
235
|
"PutInlinePolicyToPermissionSetRequestTypeDef",
|
|
228
236
|
"PutPermissionsBoundaryToPermissionSetRequestTypeDef",
|
|
237
|
+
"RegionMetadataTypeDef",
|
|
238
|
+
"RemoveRegionRequestTypeDef",
|
|
239
|
+
"RemoveRegionResponseTypeDef",
|
|
229
240
|
"ResourceServerConfigTypeDef",
|
|
230
241
|
"ResourceServerScopeDetailsTypeDef",
|
|
231
242
|
"ResponseMetadataTypeDef",
|
|
@@ -279,6 +290,21 @@ class AccountAssignmentTypeDef(TypedDict):
|
|
|
279
290
|
PrincipalType: NotRequired[PrincipalTypeType]
|
|
280
291
|
PrincipalId: NotRequired[str]
|
|
281
292
|
|
|
293
|
+
AddRegionRequestTypeDef = TypedDict(
|
|
294
|
+
"AddRegionRequestTypeDef",
|
|
295
|
+
{
|
|
296
|
+
"InstanceArn": str,
|
|
297
|
+
"RegionName": str,
|
|
298
|
+
},
|
|
299
|
+
)
|
|
300
|
+
|
|
301
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
302
|
+
RequestId: str
|
|
303
|
+
HTTPStatusCode: int
|
|
304
|
+
HTTPHeaders: dict[str, str]
|
|
305
|
+
RetryAttempts: int
|
|
306
|
+
HostId: NotRequired[str]
|
|
307
|
+
|
|
282
308
|
class ApplicationAssignmentForPrincipalTypeDef(TypedDict):
|
|
283
309
|
ApplicationArn: NotRequired[str]
|
|
284
310
|
PrincipalId: NotRequired[str]
|
|
@@ -335,13 +361,6 @@ class CreateAccountAssignmentRequestTypeDef(TypedDict):
|
|
|
335
361
|
PrincipalType: PrincipalTypeType
|
|
336
362
|
PrincipalId: str
|
|
337
363
|
|
|
338
|
-
class ResponseMetadataTypeDef(TypedDict):
|
|
339
|
-
RequestId: str
|
|
340
|
-
HTTPStatusCode: int
|
|
341
|
-
HTTPHeaders: dict[str, str]
|
|
342
|
-
RetryAttempts: int
|
|
343
|
-
HostId: NotRequired[str]
|
|
344
|
-
|
|
345
364
|
class CreateApplicationAssignmentRequestTypeDef(TypedDict):
|
|
346
365
|
ApplicationArn: str
|
|
347
366
|
PrincipalId: str
|
|
@@ -455,6 +474,14 @@ class DescribePermissionSetRequestTypeDef(TypedDict):
|
|
|
455
474
|
InstanceArn: str
|
|
456
475
|
PermissionSetArn: str
|
|
457
476
|
|
|
477
|
+
DescribeRegionRequestTypeDef = TypedDict(
|
|
478
|
+
"DescribeRegionRequestTypeDef",
|
|
479
|
+
{
|
|
480
|
+
"InstanceArn": str,
|
|
481
|
+
"RegionName": str,
|
|
482
|
+
},
|
|
483
|
+
)
|
|
484
|
+
|
|
458
485
|
class DescribeTrustedTokenIssuerRequestTypeDef(TypedDict):
|
|
459
486
|
TrustedTokenIssuerArn: str
|
|
460
487
|
|
|
@@ -593,6 +620,21 @@ class ListPermissionSetsRequestTypeDef(TypedDict):
|
|
|
593
620
|
NextToken: NotRequired[str]
|
|
594
621
|
MaxResults: NotRequired[int]
|
|
595
622
|
|
|
623
|
+
class ListRegionsRequestTypeDef(TypedDict):
|
|
624
|
+
InstanceArn: str
|
|
625
|
+
MaxResults: NotRequired[int]
|
|
626
|
+
NextToken: NotRequired[str]
|
|
627
|
+
|
|
628
|
+
RegionMetadataTypeDef = TypedDict(
|
|
629
|
+
"RegionMetadataTypeDef",
|
|
630
|
+
{
|
|
631
|
+
"RegionName": NotRequired[str],
|
|
632
|
+
"Status": NotRequired[RegionStatusType],
|
|
633
|
+
"AddedDate": NotRequired[datetime],
|
|
634
|
+
"IsPrimaryRegion": NotRequired[bool],
|
|
635
|
+
},
|
|
636
|
+
)
|
|
637
|
+
|
|
596
638
|
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
597
639
|
ResourceArn: str
|
|
598
640
|
InstanceArn: NotRequired[str]
|
|
@@ -647,6 +689,14 @@ class PutInlinePolicyToPermissionSetRequestTypeDef(TypedDict):
|
|
|
647
689
|
PermissionSetArn: str
|
|
648
690
|
InlinePolicy: str
|
|
649
691
|
|
|
692
|
+
RemoveRegionRequestTypeDef = TypedDict(
|
|
693
|
+
"RemoveRegionRequestTypeDef",
|
|
694
|
+
{
|
|
695
|
+
"InstanceArn": str,
|
|
696
|
+
"RegionName": str,
|
|
697
|
+
},
|
|
698
|
+
)
|
|
699
|
+
|
|
650
700
|
class ResourceServerScopeDetailsTypeDef(TypedDict):
|
|
651
701
|
LongDescription: NotRequired[str]
|
|
652
702
|
DetailedTitle: NotRequired[str]
|
|
@@ -671,31 +721,9 @@ class AccessControlAttributeTypeDef(TypedDict):
|
|
|
671
721
|
Key: str
|
|
672
722
|
Value: AccessControlAttributeValueTypeDef
|
|
673
723
|
|
|
674
|
-
class
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
678
|
-
|
|
679
|
-
class DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef(TypedDict):
|
|
680
|
-
InstanceArn: str
|
|
681
|
-
PermissionSetArn: str
|
|
682
|
-
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
683
|
-
|
|
684
|
-
class PermissionsBoundaryTypeDef(TypedDict):
|
|
685
|
-
CustomerManagedPolicyReference: NotRequired[CustomerManagedPolicyReferenceTypeDef]
|
|
686
|
-
ManagedPolicyArn: NotRequired[str]
|
|
687
|
-
|
|
688
|
-
class AuthenticationMethodOutputTypeDef(TypedDict):
|
|
689
|
-
Iam: NotRequired[IamAuthenticationMethodOutputTypeDef]
|
|
690
|
-
|
|
691
|
-
class AuthenticationMethodTypeDef(TypedDict):
|
|
692
|
-
Iam: NotRequired[IamAuthenticationMethodTypeDef]
|
|
693
|
-
|
|
694
|
-
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
695
|
-
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
696
|
-
|
|
697
|
-
class JwtBearerGrantTypeDef(TypedDict):
|
|
698
|
-
AuthorizedTokenIssuers: NotRequired[Sequence[AuthorizedTokenIssuerTypeDef]]
|
|
724
|
+
class AddRegionResponseTypeDef(TypedDict):
|
|
725
|
+
Status: RegionStatusType
|
|
726
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
699
727
|
|
|
700
728
|
class CreateAccountAssignmentResponseTypeDef(TypedDict):
|
|
701
729
|
AccountAssignmentCreationStatus: AccountAssignmentOperationStatusTypeDef
|
|
@@ -731,6 +759,17 @@ class DescribeApplicationAssignmentResponseTypeDef(TypedDict):
|
|
|
731
759
|
ApplicationArn: str
|
|
732
760
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
733
761
|
|
|
762
|
+
DescribeRegionResponseTypeDef = TypedDict(
|
|
763
|
+
"DescribeRegionResponseTypeDef",
|
|
764
|
+
{
|
|
765
|
+
"RegionName": str,
|
|
766
|
+
"Status": RegionStatusType,
|
|
767
|
+
"AddedDate": datetime,
|
|
768
|
+
"IsPrimaryRegion": bool,
|
|
769
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
770
|
+
},
|
|
771
|
+
)
|
|
772
|
+
|
|
734
773
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
735
774
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
736
775
|
|
|
@@ -776,6 +815,20 @@ class ListAccountsForProvisionedPermissionSetResponseTypeDef(TypedDict):
|
|
|
776
815
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
777
816
|
NextToken: NotRequired[str]
|
|
778
817
|
|
|
818
|
+
class ListPermissionSetsProvisionedToAccountResponseTypeDef(TypedDict):
|
|
819
|
+
PermissionSets: list[str]
|
|
820
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
821
|
+
NextToken: NotRequired[str]
|
|
822
|
+
|
|
823
|
+
class ListPermissionSetsResponseTypeDef(TypedDict):
|
|
824
|
+
PermissionSets: list[str]
|
|
825
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
826
|
+
NextToken: NotRequired[str]
|
|
827
|
+
|
|
828
|
+
class RemoveRegionResponseTypeDef(TypedDict):
|
|
829
|
+
Status: RegionStatusType
|
|
830
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
831
|
+
|
|
779
832
|
class ListApplicationAssignmentsForPrincipalResponseTypeDef(TypedDict):
|
|
780
833
|
ApplicationAssignments: list[ApplicationAssignmentForPrincipalTypeDef]
|
|
781
834
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -786,25 +839,41 @@ class ListApplicationAssignmentsResponseTypeDef(TypedDict):
|
|
|
786
839
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
787
840
|
NextToken: NotRequired[str]
|
|
788
841
|
|
|
842
|
+
class AttachCustomerManagedPolicyReferenceToPermissionSetRequestTypeDef(TypedDict):
|
|
843
|
+
InstanceArn: str
|
|
844
|
+
PermissionSetArn: str
|
|
845
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
846
|
+
|
|
847
|
+
class DetachCustomerManagedPolicyReferenceFromPermissionSetRequestTypeDef(TypedDict):
|
|
848
|
+
InstanceArn: str
|
|
849
|
+
PermissionSetArn: str
|
|
850
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReferenceTypeDef
|
|
851
|
+
|
|
789
852
|
class ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef(TypedDict):
|
|
790
853
|
CustomerManagedPolicyReferences: list[CustomerManagedPolicyReferenceTypeDef]
|
|
791
854
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
792
855
|
NextToken: NotRequired[str]
|
|
793
856
|
|
|
857
|
+
class PermissionsBoundaryTypeDef(TypedDict):
|
|
858
|
+
CustomerManagedPolicyReference: NotRequired[CustomerManagedPolicyReferenceTypeDef]
|
|
859
|
+
ManagedPolicyArn: NotRequired[str]
|
|
860
|
+
|
|
794
861
|
class ListManagedPoliciesInPermissionSetResponseTypeDef(TypedDict):
|
|
795
862
|
AttachedManagedPolicies: list[AttachedManagedPolicyTypeDef]
|
|
796
863
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
797
864
|
NextToken: NotRequired[str]
|
|
798
865
|
|
|
799
|
-
class
|
|
800
|
-
|
|
801
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
802
|
-
NextToken: NotRequired[str]
|
|
866
|
+
class AuthenticationMethodOutputTypeDef(TypedDict):
|
|
867
|
+
Iam: NotRequired[IamAuthenticationMethodOutputTypeDef]
|
|
803
868
|
|
|
804
|
-
class
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
869
|
+
class AuthenticationMethodTypeDef(TypedDict):
|
|
870
|
+
Iam: NotRequired[IamAuthenticationMethodTypeDef]
|
|
871
|
+
|
|
872
|
+
class JwtBearerGrantOutputTypeDef(TypedDict):
|
|
873
|
+
AuthorizedTokenIssuers: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
874
|
+
|
|
875
|
+
class JwtBearerGrantTypeDef(TypedDict):
|
|
876
|
+
AuthorizedTokenIssuers: NotRequired[Sequence[AuthorizedTokenIssuerTypeDef]]
|
|
808
877
|
|
|
809
878
|
class CreateInstanceRequestTypeDef(TypedDict):
|
|
810
879
|
Name: NotRequired[str]
|
|
@@ -953,6 +1022,10 @@ class ListPermissionSetsRequestPaginateTypeDef(TypedDict):
|
|
|
953
1022
|
InstanceArn: str
|
|
954
1023
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
955
1024
|
|
|
1025
|
+
class ListRegionsRequestPaginateTypeDef(TypedDict):
|
|
1026
|
+
InstanceArn: str
|
|
1027
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1028
|
+
|
|
956
1029
|
class ListTagsForResourceRequestPaginateTypeDef(TypedDict):
|
|
957
1030
|
ResourceArn: str
|
|
958
1031
|
InstanceArn: NotRequired[str]
|
|
@@ -1013,6 +1086,11 @@ class ListPermissionSetProvisioningStatusResponseTypeDef(TypedDict):
|
|
|
1013
1086
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1014
1087
|
NextToken: NotRequired[str]
|
|
1015
1088
|
|
|
1089
|
+
class ListRegionsResponseTypeDef(TypedDict):
|
|
1090
|
+
Regions: list[RegionMetadataTypeDef]
|
|
1091
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1092
|
+
NextToken: NotRequired[str]
|
|
1093
|
+
|
|
1016
1094
|
class ListTrustedTokenIssuersResponseTypeDef(TypedDict):
|
|
1017
1095
|
TrustedTokenIssuers: list[TrustedTokenIssuerMetadataTypeDef]
|
|
1018
1096
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1103,6 +1181,7 @@ class ApplicationTypeDef(TypedDict):
|
|
|
1103
1181
|
PortalOptions: NotRequired[PortalOptionsTypeDef]
|
|
1104
1182
|
Description: NotRequired[str]
|
|
1105
1183
|
CreatedDate: NotRequired[datetime]
|
|
1184
|
+
CreatedFrom: NotRequired[str]
|
|
1106
1185
|
|
|
1107
1186
|
class CreateApplicationRequestTypeDef(TypedDict):
|
|
1108
1187
|
InstanceArn: str
|
|
@@ -1124,6 +1203,7 @@ class DescribeApplicationResponseTypeDef(TypedDict):
|
|
|
1124
1203
|
PortalOptions: PortalOptionsTypeDef
|
|
1125
1204
|
Description: str
|
|
1126
1205
|
CreatedDate: datetime
|
|
1206
|
+
CreatedFrom: str
|
|
1127
1207
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1128
1208
|
|
|
1129
1209
|
class UpdateApplicationRequestTypeDef(TypedDict):
|