mypy-boto3-sso-admin 1.28.44__py3-none-any.whl → 1.29.2__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/__init__.py +37 -0
- mypy_boto3_sso_admin/__init__.pyi +37 -0
- mypy_boto3_sso_admin/__main__.py +4 -3
- mypy_boto3_sso_admin/client.py +558 -6
- mypy_boto3_sso_admin/client.pyi +609 -6
- mypy_boto3_sso_admin/literals.py +62 -3
- mypy_boto3_sso_admin/literals.pyi +62 -3
- mypy_boto3_sso_admin/paginator.py +197 -2
- mypy_boto3_sso_admin/paginator.pyi +188 -2
- mypy_boto3_sso_admin/type_defs.py +848 -91
- mypy_boto3_sso_admin/type_defs.pyi +848 -91
- mypy_boto3_sso_admin/version.py +2 -1
- {mypy_boto3_sso_admin-1.28.44.dist-info → mypy_boto3_sso_admin-1.29.2.dist-info}/METADATA +48 -14
- mypy_boto3_sso_admin-1.29.2.dist-info/RECORD +18 -0
- {mypy_boto3_sso_admin-1.28.44.dist-info → mypy_boto3_sso_admin-1.29.2.dist-info}/WHEEL +1 -1
- mypy_boto3_sso_admin-1.28.44.dist-info/RECORD +0 -18
- {mypy_boto3_sso_admin-1.28.44.dist-info → mypy_boto3_sso_admin-1.29.2.dist-info}/LICENSE +0 -0
- {mypy_boto3_sso_admin-1.28.44.dist-info → mypy_boto3_sso_admin-1.29.2.dist-info}/top_level.txt +0 -0
mypy_boto3_sso_admin/client.pyi
CHANGED
|
@@ -13,17 +13,32 @@ Usage::
|
|
|
13
13
|
client: SSOAdminClient = session.client("sso-admin")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
+
|
|
16
17
|
import sys
|
|
17
18
|
from typing import Any, Dict, Mapping, Sequence, Type, overload
|
|
18
19
|
|
|
19
20
|
from botocore.client import BaseClient, ClientMeta
|
|
20
21
|
|
|
21
|
-
from .literals import
|
|
22
|
+
from .literals import (
|
|
23
|
+
ApplicationStatusType,
|
|
24
|
+
GrantTypeType,
|
|
25
|
+
PrincipalTypeType,
|
|
26
|
+
ProvisioningStatusType,
|
|
27
|
+
ProvisionTargetTypeType,
|
|
28
|
+
)
|
|
22
29
|
from .paginator import (
|
|
23
30
|
ListAccountAssignmentCreationStatusPaginator,
|
|
24
31
|
ListAccountAssignmentDeletionStatusPaginator,
|
|
32
|
+
ListAccountAssignmentsForPrincipalPaginator,
|
|
25
33
|
ListAccountAssignmentsPaginator,
|
|
26
34
|
ListAccountsForProvisionedPermissionSetPaginator,
|
|
35
|
+
ListApplicationAccessScopesPaginator,
|
|
36
|
+
ListApplicationAssignmentsForPrincipalPaginator,
|
|
37
|
+
ListApplicationAssignmentsPaginator,
|
|
38
|
+
ListApplicationAuthenticationMethodsPaginator,
|
|
39
|
+
ListApplicationGrantsPaginator,
|
|
40
|
+
ListApplicationProvidersPaginator,
|
|
41
|
+
ListApplicationsPaginator,
|
|
27
42
|
ListCustomerManagedPolicyReferencesInPermissionSetPaginator,
|
|
28
43
|
ListInstancesPaginator,
|
|
29
44
|
ListManagedPoliciesInPermissionSetPaginator,
|
|
@@ -31,24 +46,51 @@ from .paginator import (
|
|
|
31
46
|
ListPermissionSetsPaginator,
|
|
32
47
|
ListPermissionSetsProvisionedToAccountPaginator,
|
|
33
48
|
ListTagsForResourcePaginator,
|
|
49
|
+
ListTrustedTokenIssuersPaginator,
|
|
34
50
|
)
|
|
35
51
|
from .type_defs import (
|
|
52
|
+
AuthenticationMethodTypeDef,
|
|
36
53
|
CreateAccountAssignmentResponseTypeDef,
|
|
54
|
+
CreateApplicationResponseTypeDef,
|
|
55
|
+
CreateInstanceResponseTypeDef,
|
|
37
56
|
CreatePermissionSetResponseTypeDef,
|
|
57
|
+
CreateTrustedTokenIssuerResponseTypeDef,
|
|
38
58
|
CustomerManagedPolicyReferenceTypeDef,
|
|
39
59
|
DeleteAccountAssignmentResponseTypeDef,
|
|
40
60
|
DescribeAccountAssignmentCreationStatusResponseTypeDef,
|
|
41
61
|
DescribeAccountAssignmentDeletionStatusResponseTypeDef,
|
|
62
|
+
DescribeApplicationAssignmentResponseTypeDef,
|
|
63
|
+
DescribeApplicationProviderResponseTypeDef,
|
|
64
|
+
DescribeApplicationResponseTypeDef,
|
|
42
65
|
DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef,
|
|
66
|
+
DescribeInstanceResponseTypeDef,
|
|
43
67
|
DescribePermissionSetProvisioningStatusResponseTypeDef,
|
|
44
68
|
DescribePermissionSetResponseTypeDef,
|
|
69
|
+
DescribeTrustedTokenIssuerResponseTypeDef,
|
|
70
|
+
EmptyResponseMetadataTypeDef,
|
|
71
|
+
GetApplicationAccessScopeResponseTypeDef,
|
|
72
|
+
GetApplicationAssignmentConfigurationResponseTypeDef,
|
|
73
|
+
GetApplicationAuthenticationMethodResponseTypeDef,
|
|
74
|
+
GetApplicationGrantResponseTypeDef,
|
|
45
75
|
GetInlinePolicyForPermissionSetResponseTypeDef,
|
|
46
76
|
GetPermissionsBoundaryForPermissionSetResponseTypeDef,
|
|
77
|
+
GrantTypeDef,
|
|
47
78
|
InstanceAccessControlAttributeConfigurationTypeDef,
|
|
48
79
|
ListAccountAssignmentCreationStatusResponseTypeDef,
|
|
49
80
|
ListAccountAssignmentDeletionStatusResponseTypeDef,
|
|
81
|
+
ListAccountAssignmentsFilterTypeDef,
|
|
82
|
+
ListAccountAssignmentsForPrincipalResponseTypeDef,
|
|
50
83
|
ListAccountAssignmentsResponseTypeDef,
|
|
51
84
|
ListAccountsForProvisionedPermissionSetResponseTypeDef,
|
|
85
|
+
ListApplicationAccessScopesResponseTypeDef,
|
|
86
|
+
ListApplicationAssignmentsFilterTypeDef,
|
|
87
|
+
ListApplicationAssignmentsForPrincipalResponseTypeDef,
|
|
88
|
+
ListApplicationAssignmentsResponseTypeDef,
|
|
89
|
+
ListApplicationAuthenticationMethodsResponseTypeDef,
|
|
90
|
+
ListApplicationGrantsResponseTypeDef,
|
|
91
|
+
ListApplicationProvidersResponseTypeDef,
|
|
92
|
+
ListApplicationsFilterTypeDef,
|
|
93
|
+
ListApplicationsResponseTypeDef,
|
|
52
94
|
ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef,
|
|
53
95
|
ListInstancesResponseTypeDef,
|
|
54
96
|
ListManagedPoliciesInPermissionSetResponseTypeDef,
|
|
@@ -56,10 +98,15 @@ from .type_defs import (
|
|
|
56
98
|
ListPermissionSetsProvisionedToAccountResponseTypeDef,
|
|
57
99
|
ListPermissionSetsResponseTypeDef,
|
|
58
100
|
ListTagsForResourceResponseTypeDef,
|
|
101
|
+
ListTrustedTokenIssuersResponseTypeDef,
|
|
59
102
|
OperationStatusFilterTypeDef,
|
|
60
103
|
PermissionsBoundaryTypeDef,
|
|
104
|
+
PortalOptionsTypeDef,
|
|
61
105
|
ProvisionPermissionSetResponseTypeDef,
|
|
62
106
|
TagTypeDef,
|
|
107
|
+
TrustedTokenIssuerConfigurationTypeDef,
|
|
108
|
+
TrustedTokenIssuerUpdateConfigurationTypeDef,
|
|
109
|
+
UpdateApplicationPortalOptionsTypeDef,
|
|
63
110
|
)
|
|
64
111
|
|
|
65
112
|
if sys.version_info >= (3, 12):
|
|
@@ -69,7 +116,7 @@ else:
|
|
|
69
116
|
|
|
70
117
|
__all__ = ("SSOAdminClient",)
|
|
71
118
|
|
|
72
|
-
class BotocoreClientError(
|
|
119
|
+
class BotocoreClientError(Exception):
|
|
73
120
|
MSG_TEMPLATE: str
|
|
74
121
|
|
|
75
122
|
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
@@ -102,6 +149,7 @@ class SSOAdminClient(BaseClient):
|
|
|
102
149
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.exceptions)
|
|
103
150
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#exceptions)
|
|
104
151
|
"""
|
|
152
|
+
|
|
105
153
|
def attach_customer_managed_policy_reference_to_permission_set(
|
|
106
154
|
self,
|
|
107
155
|
*,
|
|
@@ -115,6 +163,7 @@ class SSOAdminClient(BaseClient):
|
|
|
115
163
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.attach_customer_managed_policy_reference_to_permission_set)
|
|
116
164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#attach_customer_managed_policy_reference_to_permission_set)
|
|
117
165
|
"""
|
|
166
|
+
|
|
118
167
|
def attach_managed_policy_to_permission_set(
|
|
119
168
|
self, *, InstanceArn: str, ManagedPolicyArn: str, PermissionSetArn: str
|
|
120
169
|
) -> Dict[str, Any]:
|
|
@@ -124,6 +173,7 @@ class SSOAdminClient(BaseClient):
|
|
|
124
173
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.attach_managed_policy_to_permission_set)
|
|
125
174
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#attach_managed_policy_to_permission_set)
|
|
126
175
|
"""
|
|
176
|
+
|
|
127
177
|
def can_paginate(self, operation_name: str) -> bool:
|
|
128
178
|
"""
|
|
129
179
|
Check if an operation can be paginated.
|
|
@@ -131,6 +181,7 @@ class SSOAdminClient(BaseClient):
|
|
|
131
181
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.can_paginate)
|
|
132
182
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#can_paginate)
|
|
133
183
|
"""
|
|
184
|
+
|
|
134
185
|
def close(self) -> None:
|
|
135
186
|
"""
|
|
136
187
|
Closes underlying endpoint connections.
|
|
@@ -138,6 +189,7 @@ class SSOAdminClient(BaseClient):
|
|
|
138
189
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.close)
|
|
139
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#close)
|
|
140
191
|
"""
|
|
192
|
+
|
|
141
193
|
def create_account_assignment(
|
|
142
194
|
self,
|
|
143
195
|
*,
|
|
@@ -156,6 +208,50 @@ class SSOAdminClient(BaseClient):
|
|
|
156
208
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_account_assignment)
|
|
157
209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_account_assignment)
|
|
158
210
|
"""
|
|
211
|
+
|
|
212
|
+
def create_application(
|
|
213
|
+
self,
|
|
214
|
+
*,
|
|
215
|
+
ApplicationProviderArn: str,
|
|
216
|
+
InstanceArn: str,
|
|
217
|
+
Name: str,
|
|
218
|
+
ClientToken: str = ...,
|
|
219
|
+
Description: str = ...,
|
|
220
|
+
PortalOptions: PortalOptionsTypeDef = ...,
|
|
221
|
+
Status: ApplicationStatusType = ...,
|
|
222
|
+
Tags: Sequence[TagTypeDef] = ...
|
|
223
|
+
) -> CreateApplicationResponseTypeDef:
|
|
224
|
+
"""
|
|
225
|
+
Creates an application in IAM Identity Center for the given application
|
|
226
|
+
provider.
|
|
227
|
+
|
|
228
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_application)
|
|
229
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_application)
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
def create_application_assignment(
|
|
233
|
+
self, *, ApplicationArn: str, PrincipalId: str, PrincipalType: PrincipalTypeType
|
|
234
|
+
) -> Dict[str, Any]:
|
|
235
|
+
"""
|
|
236
|
+
Grant application access to a user or group.
|
|
237
|
+
|
|
238
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_application_assignment)
|
|
239
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_application_assignment)
|
|
240
|
+
"""
|
|
241
|
+
|
|
242
|
+
def create_instance(
|
|
243
|
+
self, *, ClientToken: str = ..., Name: str = ..., Tags: Sequence[TagTypeDef] = ...
|
|
244
|
+
) -> CreateInstanceResponseTypeDef:
|
|
245
|
+
"""
|
|
246
|
+
Creates an instance of IAM Identity Center for a standalone Amazon Web Services
|
|
247
|
+
account that is not managed by Organizations or a member Amazon Web Services
|
|
248
|
+
account in an
|
|
249
|
+
organization.
|
|
250
|
+
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_instance)
|
|
252
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_instance)
|
|
253
|
+
"""
|
|
254
|
+
|
|
159
255
|
def create_instance_access_control_attribute_configuration(
|
|
160
256
|
self,
|
|
161
257
|
*,
|
|
@@ -170,6 +266,7 @@ class SSOAdminClient(BaseClient):
|
|
|
170
266
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_instance_access_control_attribute_configuration)
|
|
171
267
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_instance_access_control_attribute_configuration)
|
|
172
268
|
"""
|
|
269
|
+
|
|
173
270
|
def create_permission_set(
|
|
174
271
|
self,
|
|
175
272
|
*,
|
|
@@ -186,6 +283,25 @@ class SSOAdminClient(BaseClient):
|
|
|
186
283
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_permission_set)
|
|
187
284
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_permission_set)
|
|
188
285
|
"""
|
|
286
|
+
|
|
287
|
+
def create_trusted_token_issuer(
|
|
288
|
+
self,
|
|
289
|
+
*,
|
|
290
|
+
InstanceArn: str,
|
|
291
|
+
Name: str,
|
|
292
|
+
TrustedTokenIssuerConfiguration: TrustedTokenIssuerConfigurationTypeDef,
|
|
293
|
+
TrustedTokenIssuerType: Literal["OIDC_JWT"],
|
|
294
|
+
ClientToken: str = ...,
|
|
295
|
+
Tags: Sequence[TagTypeDef] = ...
|
|
296
|
+
) -> CreateTrustedTokenIssuerResponseTypeDef:
|
|
297
|
+
"""
|
|
298
|
+
Creates a connection to a trusted token issuer in an instance of IAM Identity
|
|
299
|
+
Center.
|
|
300
|
+
|
|
301
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.create_trusted_token_issuer)
|
|
302
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_trusted_token_issuer)
|
|
303
|
+
"""
|
|
304
|
+
|
|
189
305
|
def delete_account_assignment(
|
|
190
306
|
self,
|
|
191
307
|
*,
|
|
@@ -204,6 +320,57 @@ class SSOAdminClient(BaseClient):
|
|
|
204
320
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_account_assignment)
|
|
205
321
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_account_assignment)
|
|
206
322
|
"""
|
|
323
|
+
|
|
324
|
+
def delete_application(self, *, ApplicationArn: str) -> Dict[str, Any]:
|
|
325
|
+
"""
|
|
326
|
+
Deletes the association with the application.
|
|
327
|
+
|
|
328
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_application)
|
|
329
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_application)
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
def delete_application_access_scope(
|
|
333
|
+
self, *, ApplicationArn: str, Scope: str
|
|
334
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
335
|
+
"""
|
|
336
|
+
Deletes an IAM Identity Center access scope from an application.
|
|
337
|
+
|
|
338
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_application_access_scope)
|
|
339
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_application_access_scope)
|
|
340
|
+
"""
|
|
341
|
+
|
|
342
|
+
def delete_application_assignment(
|
|
343
|
+
self, *, ApplicationArn: str, PrincipalId: str, PrincipalType: PrincipalTypeType
|
|
344
|
+
) -> Dict[str, Any]:
|
|
345
|
+
"""
|
|
346
|
+
Revoke application access to an application by deleting application assignments
|
|
347
|
+
for a user or
|
|
348
|
+
group.
|
|
349
|
+
|
|
350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_application_assignment)
|
|
351
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_application_assignment)
|
|
352
|
+
"""
|
|
353
|
+
|
|
354
|
+
def delete_application_authentication_method(
|
|
355
|
+
self, *, ApplicationArn: str, AuthenticationMethodType: Literal["IAM"]
|
|
356
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
357
|
+
"""
|
|
358
|
+
Deletes an authentication method from an application.
|
|
359
|
+
|
|
360
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_application_authentication_method)
|
|
361
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_application_authentication_method)
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
def delete_application_grant(
|
|
365
|
+
self, *, ApplicationArn: str, GrantType: GrantTypeType
|
|
366
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
367
|
+
"""
|
|
368
|
+
Deletes a grant from an application.
|
|
369
|
+
|
|
370
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_application_grant)
|
|
371
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_application_grant)
|
|
372
|
+
"""
|
|
373
|
+
|
|
207
374
|
def delete_inline_policy_from_permission_set(
|
|
208
375
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
209
376
|
) -> Dict[str, Any]:
|
|
@@ -213,6 +380,15 @@ class SSOAdminClient(BaseClient):
|
|
|
213
380
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_inline_policy_from_permission_set)
|
|
214
381
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
|
|
215
382
|
"""
|
|
383
|
+
|
|
384
|
+
def delete_instance(self, *, InstanceArn: str) -> Dict[str, Any]:
|
|
385
|
+
"""
|
|
386
|
+
Deletes the instance of IAM Identity Center.
|
|
387
|
+
|
|
388
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_instance)
|
|
389
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_instance)
|
|
390
|
+
"""
|
|
391
|
+
|
|
216
392
|
def delete_instance_access_control_attribute_configuration(
|
|
217
393
|
self, *, InstanceArn: str
|
|
218
394
|
) -> Dict[str, Any]:
|
|
@@ -225,6 +401,7 @@ class SSOAdminClient(BaseClient):
|
|
|
225
401
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_instance_access_control_attribute_configuration)
|
|
226
402
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_instance_access_control_attribute_configuration)
|
|
227
403
|
"""
|
|
404
|
+
|
|
228
405
|
def delete_permission_set(self, *, InstanceArn: str, PermissionSetArn: str) -> Dict[str, Any]:
|
|
229
406
|
"""
|
|
230
407
|
Deletes the specified permission set.
|
|
@@ -232,6 +409,7 @@ class SSOAdminClient(BaseClient):
|
|
|
232
409
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_permission_set)
|
|
233
410
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_permission_set)
|
|
234
411
|
"""
|
|
412
|
+
|
|
235
413
|
def delete_permissions_boundary_from_permission_set(
|
|
236
414
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
237
415
|
) -> Dict[str, Any]:
|
|
@@ -241,6 +419,16 @@ class SSOAdminClient(BaseClient):
|
|
|
241
419
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_permissions_boundary_from_permission_set)
|
|
242
420
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_permissions_boundary_from_permission_set)
|
|
243
421
|
"""
|
|
422
|
+
|
|
423
|
+
def delete_trusted_token_issuer(self, *, TrustedTokenIssuerArn: str) -> Dict[str, Any]:
|
|
424
|
+
"""
|
|
425
|
+
Deletes a trusted token issuer configuration from an instance of IAM Identity
|
|
426
|
+
Center.
|
|
427
|
+
|
|
428
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.delete_trusted_token_issuer)
|
|
429
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_trusted_token_issuer)
|
|
430
|
+
"""
|
|
431
|
+
|
|
244
432
|
def describe_account_assignment_creation_status(
|
|
245
433
|
self, *, AccountAssignmentCreationRequestId: str, InstanceArn: str
|
|
246
434
|
) -> DescribeAccountAssignmentCreationStatusResponseTypeDef:
|
|
@@ -250,6 +438,7 @@ class SSOAdminClient(BaseClient):
|
|
|
250
438
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_account_assignment_creation_status)
|
|
251
439
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_account_assignment_creation_status)
|
|
252
440
|
"""
|
|
441
|
+
|
|
253
442
|
def describe_account_assignment_deletion_status(
|
|
254
443
|
self, *, AccountAssignmentDeletionRequestId: str, InstanceArn: str
|
|
255
444
|
) -> DescribeAccountAssignmentDeletionStatusResponseTypeDef:
|
|
@@ -259,6 +448,47 @@ class SSOAdminClient(BaseClient):
|
|
|
259
448
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_account_assignment_deletion_status)
|
|
260
449
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_account_assignment_deletion_status)
|
|
261
450
|
"""
|
|
451
|
+
|
|
452
|
+
def describe_application(self, *, ApplicationArn: str) -> DescribeApplicationResponseTypeDef:
|
|
453
|
+
"""
|
|
454
|
+
Retrieves the details of an application associated with an instance of IAM
|
|
455
|
+
Identity
|
|
456
|
+
Center.
|
|
457
|
+
|
|
458
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_application)
|
|
459
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_application)
|
|
460
|
+
"""
|
|
461
|
+
|
|
462
|
+
def describe_application_assignment(
|
|
463
|
+
self, *, ApplicationArn: str, PrincipalId: str, PrincipalType: PrincipalTypeType
|
|
464
|
+
) -> DescribeApplicationAssignmentResponseTypeDef:
|
|
465
|
+
"""
|
|
466
|
+
Retrieves a direct assignment of a user or group to an application.
|
|
467
|
+
|
|
468
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_application_assignment)
|
|
469
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_application_assignment)
|
|
470
|
+
"""
|
|
471
|
+
|
|
472
|
+
def describe_application_provider(
|
|
473
|
+
self, *, ApplicationProviderArn: str
|
|
474
|
+
) -> DescribeApplicationProviderResponseTypeDef:
|
|
475
|
+
"""
|
|
476
|
+
Retrieves details about a provider that can be used to connect an Amazon Web
|
|
477
|
+
Services managed application or customer managed application to IAM Identity
|
|
478
|
+
Center.
|
|
479
|
+
|
|
480
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_application_provider)
|
|
481
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_application_provider)
|
|
482
|
+
"""
|
|
483
|
+
|
|
484
|
+
def describe_instance(self, *, InstanceArn: str) -> DescribeInstanceResponseTypeDef:
|
|
485
|
+
"""
|
|
486
|
+
Returns the details of an instance of IAM Identity Center.
|
|
487
|
+
|
|
488
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_instance)
|
|
489
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_instance)
|
|
490
|
+
"""
|
|
491
|
+
|
|
262
492
|
def describe_instance_access_control_attribute_configuration(
|
|
263
493
|
self, *, InstanceArn: str
|
|
264
494
|
) -> DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef:
|
|
@@ -271,6 +501,7 @@ class SSOAdminClient(BaseClient):
|
|
|
271
501
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_instance_access_control_attribute_configuration)
|
|
272
502
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_instance_access_control_attribute_configuration)
|
|
273
503
|
"""
|
|
504
|
+
|
|
274
505
|
def describe_permission_set(
|
|
275
506
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
276
507
|
) -> DescribePermissionSetResponseTypeDef:
|
|
@@ -280,6 +511,7 @@ class SSOAdminClient(BaseClient):
|
|
|
280
511
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_permission_set)
|
|
281
512
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_permission_set)
|
|
282
513
|
"""
|
|
514
|
+
|
|
283
515
|
def describe_permission_set_provisioning_status(
|
|
284
516
|
self, *, InstanceArn: str, ProvisionPermissionSetRequestId: str
|
|
285
517
|
) -> DescribePermissionSetProvisioningStatusResponseTypeDef:
|
|
@@ -289,6 +521,19 @@ class SSOAdminClient(BaseClient):
|
|
|
289
521
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_permission_set_provisioning_status)
|
|
290
522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_permission_set_provisioning_status)
|
|
291
523
|
"""
|
|
524
|
+
|
|
525
|
+
def describe_trusted_token_issuer(
|
|
526
|
+
self, *, TrustedTokenIssuerArn: str
|
|
527
|
+
) -> DescribeTrustedTokenIssuerResponseTypeDef:
|
|
528
|
+
"""
|
|
529
|
+
Retrieves details about a trusted token issuer configuration stored in an
|
|
530
|
+
instance of IAM Identity
|
|
531
|
+
Center.
|
|
532
|
+
|
|
533
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.describe_trusted_token_issuer)
|
|
534
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_trusted_token_issuer)
|
|
535
|
+
"""
|
|
536
|
+
|
|
292
537
|
def detach_customer_managed_policy_reference_from_permission_set(
|
|
293
538
|
self,
|
|
294
539
|
*,
|
|
@@ -303,6 +548,7 @@ class SSOAdminClient(BaseClient):
|
|
|
303
548
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.detach_customer_managed_policy_reference_from_permission_set)
|
|
304
549
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#detach_customer_managed_policy_reference_from_permission_set)
|
|
305
550
|
"""
|
|
551
|
+
|
|
306
552
|
def detach_managed_policy_from_permission_set(
|
|
307
553
|
self, *, InstanceArn: str, ManagedPolicyArn: str, PermissionSetArn: str
|
|
308
554
|
) -> Dict[str, Any]:
|
|
@@ -314,6 +560,7 @@ class SSOAdminClient(BaseClient):
|
|
|
314
560
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.detach_managed_policy_from_permission_set)
|
|
315
561
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#detach_managed_policy_from_permission_set)
|
|
316
562
|
"""
|
|
563
|
+
|
|
317
564
|
def generate_presigned_url(
|
|
318
565
|
self,
|
|
319
566
|
ClientMethod: str,
|
|
@@ -327,6 +574,48 @@ class SSOAdminClient(BaseClient):
|
|
|
327
574
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.generate_presigned_url)
|
|
328
575
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#generate_presigned_url)
|
|
329
576
|
"""
|
|
577
|
+
|
|
578
|
+
def get_application_access_scope(
|
|
579
|
+
self, *, ApplicationArn: str, Scope: str
|
|
580
|
+
) -> GetApplicationAccessScopeResponseTypeDef:
|
|
581
|
+
"""
|
|
582
|
+
Retrieves the authorized targets for an IAM Identity Center access scope for an
|
|
583
|
+
application.
|
|
584
|
+
|
|
585
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_application_access_scope)
|
|
586
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_access_scope)
|
|
587
|
+
"""
|
|
588
|
+
|
|
589
|
+
def get_application_assignment_configuration(
|
|
590
|
+
self, *, ApplicationArn: str
|
|
591
|
+
) -> GetApplicationAssignmentConfigurationResponseTypeDef:
|
|
592
|
+
"""
|
|
593
|
+
Retrieves the configuration of PutApplicationAssignmentConfiguration.
|
|
594
|
+
|
|
595
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_application_assignment_configuration)
|
|
596
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_assignment_configuration)
|
|
597
|
+
"""
|
|
598
|
+
|
|
599
|
+
def get_application_authentication_method(
|
|
600
|
+
self, *, ApplicationArn: str, AuthenticationMethodType: Literal["IAM"]
|
|
601
|
+
) -> GetApplicationAuthenticationMethodResponseTypeDef:
|
|
602
|
+
"""
|
|
603
|
+
Retrieves details about an authentication method used by an application.
|
|
604
|
+
|
|
605
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_application_authentication_method)
|
|
606
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_authentication_method)
|
|
607
|
+
"""
|
|
608
|
+
|
|
609
|
+
def get_application_grant(
|
|
610
|
+
self, *, ApplicationArn: str, GrantType: GrantTypeType
|
|
611
|
+
) -> GetApplicationGrantResponseTypeDef:
|
|
612
|
+
"""
|
|
613
|
+
Retrieves details about an application grant.
|
|
614
|
+
|
|
615
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_application_grant)
|
|
616
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_grant)
|
|
617
|
+
"""
|
|
618
|
+
|
|
330
619
|
def get_inline_policy_for_permission_set(
|
|
331
620
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
332
621
|
) -> GetInlinePolicyForPermissionSetResponseTypeDef:
|
|
@@ -336,6 +625,7 @@ class SSOAdminClient(BaseClient):
|
|
|
336
625
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_inline_policy_for_permission_set)
|
|
337
626
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_inline_policy_for_permission_set)
|
|
338
627
|
"""
|
|
628
|
+
|
|
339
629
|
def get_permissions_boundary_for_permission_set(
|
|
340
630
|
self, *, InstanceArn: str, PermissionSetArn: str
|
|
341
631
|
) -> GetPermissionsBoundaryForPermissionSetResponseTypeDef:
|
|
@@ -345,6 +635,7 @@ class SSOAdminClient(BaseClient):
|
|
|
345
635
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_permissions_boundary_for_permission_set)
|
|
346
636
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_permissions_boundary_for_permission_set)
|
|
347
637
|
"""
|
|
638
|
+
|
|
348
639
|
def list_account_assignment_creation_status(
|
|
349
640
|
self,
|
|
350
641
|
*,
|
|
@@ -361,6 +652,7 @@ class SSOAdminClient(BaseClient):
|
|
|
361
652
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignment_creation_status)
|
|
362
653
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignment_creation_status)
|
|
363
654
|
"""
|
|
655
|
+
|
|
364
656
|
def list_account_assignment_deletion_status(
|
|
365
657
|
self,
|
|
366
658
|
*,
|
|
@@ -377,6 +669,7 @@ class SSOAdminClient(BaseClient):
|
|
|
377
669
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignment_deletion_status)
|
|
378
670
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignment_deletion_status)
|
|
379
671
|
"""
|
|
672
|
+
|
|
380
673
|
def list_account_assignments(
|
|
381
674
|
self,
|
|
382
675
|
*,
|
|
@@ -394,6 +687,26 @@ class SSOAdminClient(BaseClient):
|
|
|
394
687
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignments)
|
|
395
688
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignments)
|
|
396
689
|
"""
|
|
690
|
+
|
|
691
|
+
def list_account_assignments_for_principal(
|
|
692
|
+
self,
|
|
693
|
+
*,
|
|
694
|
+
InstanceArn: str,
|
|
695
|
+
PrincipalId: str,
|
|
696
|
+
PrincipalType: PrincipalTypeType,
|
|
697
|
+
Filter: ListAccountAssignmentsFilterTypeDef = ...,
|
|
698
|
+
MaxResults: int = ...,
|
|
699
|
+
NextToken: str = ...
|
|
700
|
+
) -> ListAccountAssignmentsForPrincipalResponseTypeDef:
|
|
701
|
+
"""
|
|
702
|
+
Retrieves a list of the IAM Identity Center associated Amazon Web Services
|
|
703
|
+
accounts that the principal has access
|
|
704
|
+
to.
|
|
705
|
+
|
|
706
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_account_assignments_for_principal)
|
|
707
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignments_for_principal)
|
|
708
|
+
"""
|
|
709
|
+
|
|
397
710
|
def list_accounts_for_provisioned_permission_set(
|
|
398
711
|
self,
|
|
399
712
|
*,
|
|
@@ -411,6 +724,90 @@ class SSOAdminClient(BaseClient):
|
|
|
411
724
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_accounts_for_provisioned_permission_set)
|
|
412
725
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_accounts_for_provisioned_permission_set)
|
|
413
726
|
"""
|
|
727
|
+
|
|
728
|
+
def list_application_access_scopes(
|
|
729
|
+
self, *, ApplicationArn: str, MaxResults: int = ..., NextToken: str = ...
|
|
730
|
+
) -> ListApplicationAccessScopesResponseTypeDef:
|
|
731
|
+
"""
|
|
732
|
+
Lists the access scopes and authorized targets associated with an application.
|
|
733
|
+
|
|
734
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_access_scopes)
|
|
735
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_access_scopes)
|
|
736
|
+
"""
|
|
737
|
+
|
|
738
|
+
def list_application_assignments(
|
|
739
|
+
self, *, ApplicationArn: str, MaxResults: int = ..., NextToken: str = ...
|
|
740
|
+
) -> ListApplicationAssignmentsResponseTypeDef:
|
|
741
|
+
"""
|
|
742
|
+
Lists Amazon Web Services account users that are assigned to an application.
|
|
743
|
+
|
|
744
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_assignments)
|
|
745
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_assignments)
|
|
746
|
+
"""
|
|
747
|
+
|
|
748
|
+
def list_application_assignments_for_principal(
|
|
749
|
+
self,
|
|
750
|
+
*,
|
|
751
|
+
InstanceArn: str,
|
|
752
|
+
PrincipalId: str,
|
|
753
|
+
PrincipalType: PrincipalTypeType,
|
|
754
|
+
Filter: ListApplicationAssignmentsFilterTypeDef = ...,
|
|
755
|
+
MaxResults: int = ...,
|
|
756
|
+
NextToken: str = ...
|
|
757
|
+
) -> ListApplicationAssignmentsForPrincipalResponseTypeDef:
|
|
758
|
+
"""
|
|
759
|
+
Lists the applications to which a specified principal is assigned.
|
|
760
|
+
|
|
761
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_assignments_for_principal)
|
|
762
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_assignments_for_principal)
|
|
763
|
+
"""
|
|
764
|
+
|
|
765
|
+
def list_application_authentication_methods(
|
|
766
|
+
self, *, ApplicationArn: str, NextToken: str = ...
|
|
767
|
+
) -> ListApplicationAuthenticationMethodsResponseTypeDef:
|
|
768
|
+
"""
|
|
769
|
+
Lists all of the authentication methods supported by the specified application.
|
|
770
|
+
|
|
771
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_authentication_methods)
|
|
772
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_authentication_methods)
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
def list_application_grants(
|
|
776
|
+
self, *, ApplicationArn: str, NextToken: str = ...
|
|
777
|
+
) -> ListApplicationGrantsResponseTypeDef:
|
|
778
|
+
"""
|
|
779
|
+
List the grants associated with an application.
|
|
780
|
+
|
|
781
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_grants)
|
|
782
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_grants)
|
|
783
|
+
"""
|
|
784
|
+
|
|
785
|
+
def list_application_providers(
|
|
786
|
+
self, *, MaxResults: int = ..., NextToken: str = ...
|
|
787
|
+
) -> ListApplicationProvidersResponseTypeDef:
|
|
788
|
+
"""
|
|
789
|
+
Lists the application providers configured in the IAM Identity Center identity
|
|
790
|
+
store.
|
|
791
|
+
|
|
792
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_application_providers)
|
|
793
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_application_providers)
|
|
794
|
+
"""
|
|
795
|
+
|
|
796
|
+
def list_applications(
|
|
797
|
+
self,
|
|
798
|
+
*,
|
|
799
|
+
InstanceArn: str,
|
|
800
|
+
Filter: ListApplicationsFilterTypeDef = ...,
|
|
801
|
+
MaxResults: int = ...,
|
|
802
|
+
NextToken: str = ...
|
|
803
|
+
) -> ListApplicationsResponseTypeDef:
|
|
804
|
+
"""
|
|
805
|
+
Lists all applications associated with the instance of IAM Identity Center.
|
|
806
|
+
|
|
807
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_applications)
|
|
808
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_applications)
|
|
809
|
+
"""
|
|
810
|
+
|
|
414
811
|
def list_customer_managed_policy_references_in_permission_set(
|
|
415
812
|
self,
|
|
416
813
|
*,
|
|
@@ -425,15 +822,19 @@ class SSOAdminClient(BaseClient):
|
|
|
425
822
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_customer_managed_policy_references_in_permission_set)
|
|
426
823
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_customer_managed_policy_references_in_permission_set)
|
|
427
824
|
"""
|
|
825
|
+
|
|
428
826
|
def list_instances(
|
|
429
827
|
self, *, MaxResults: int = ..., NextToken: str = ...
|
|
430
828
|
) -> ListInstancesResponseTypeDef:
|
|
431
829
|
"""
|
|
432
|
-
Lists the
|
|
830
|
+
Lists the details of the organization and account instances of IAM Identity
|
|
831
|
+
Center that were created in or visible to the account calling this
|
|
832
|
+
API.
|
|
433
833
|
|
|
434
834
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_instances)
|
|
435
835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_instances)
|
|
436
836
|
"""
|
|
837
|
+
|
|
437
838
|
def list_managed_policies_in_permission_set(
|
|
438
839
|
self,
|
|
439
840
|
*,
|
|
@@ -450,6 +851,7 @@ class SSOAdminClient(BaseClient):
|
|
|
450
851
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_managed_policies_in_permission_set)
|
|
451
852
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_managed_policies_in_permission_set)
|
|
452
853
|
"""
|
|
854
|
+
|
|
453
855
|
def list_permission_set_provisioning_status(
|
|
454
856
|
self,
|
|
455
857
|
*,
|
|
@@ -466,6 +868,7 @@ class SSOAdminClient(BaseClient):
|
|
|
466
868
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_set_provisioning_status)
|
|
467
869
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_set_provisioning_status)
|
|
468
870
|
"""
|
|
871
|
+
|
|
469
872
|
def list_permission_sets(
|
|
470
873
|
self, *, InstanceArn: str, MaxResults: int = ..., NextToken: str = ...
|
|
471
874
|
) -> ListPermissionSetsResponseTypeDef:
|
|
@@ -475,6 +878,7 @@ class SSOAdminClient(BaseClient):
|
|
|
475
878
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_sets)
|
|
476
879
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_sets)
|
|
477
880
|
"""
|
|
881
|
+
|
|
478
882
|
def list_permission_sets_provisioned_to_account(
|
|
479
883
|
self,
|
|
480
884
|
*,
|
|
@@ -492,8 +896,9 @@ class SSOAdminClient(BaseClient):
|
|
|
492
896
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_permission_sets_provisioned_to_account)
|
|
493
897
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_permission_sets_provisioned_to_account)
|
|
494
898
|
"""
|
|
899
|
+
|
|
495
900
|
def list_tags_for_resource(
|
|
496
|
-
self, *,
|
|
901
|
+
self, *, ResourceArn: str, InstanceArn: str = ..., NextToken: str = ...
|
|
497
902
|
) -> ListTagsForResourceResponseTypeDef:
|
|
498
903
|
"""
|
|
499
904
|
Lists the tags that are attached to a specified resource.
|
|
@@ -501,6 +906,18 @@ class SSOAdminClient(BaseClient):
|
|
|
501
906
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_tags_for_resource)
|
|
502
907
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_tags_for_resource)
|
|
503
908
|
"""
|
|
909
|
+
|
|
910
|
+
def list_trusted_token_issuers(
|
|
911
|
+
self, *, InstanceArn: str, MaxResults: int = ..., NextToken: str = ...
|
|
912
|
+
) -> ListTrustedTokenIssuersResponseTypeDef:
|
|
913
|
+
"""
|
|
914
|
+
Lists all the trusted token issuers configured in an instance of IAM Identity
|
|
915
|
+
Center.
|
|
916
|
+
|
|
917
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_trusted_token_issuers)
|
|
918
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_trusted_token_issuers)
|
|
919
|
+
"""
|
|
920
|
+
|
|
504
921
|
def provision_permission_set(
|
|
505
922
|
self,
|
|
506
923
|
*,
|
|
@@ -516,6 +933,53 @@ class SSOAdminClient(BaseClient):
|
|
|
516
933
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.provision_permission_set)
|
|
517
934
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#provision_permission_set)
|
|
518
935
|
"""
|
|
936
|
+
|
|
937
|
+
def put_application_access_scope(
|
|
938
|
+
self, *, ApplicationArn: str, Scope: str, AuthorizedTargets: Sequence[str] = ...
|
|
939
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
940
|
+
"""
|
|
941
|
+
Adds or updates the list of authorized targets for an IAM Identity Center
|
|
942
|
+
access scope for an
|
|
943
|
+
application.
|
|
944
|
+
|
|
945
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_application_access_scope)
|
|
946
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_access_scope)
|
|
947
|
+
"""
|
|
948
|
+
|
|
949
|
+
def put_application_assignment_configuration(
|
|
950
|
+
self, *, ApplicationArn: str, AssignmentRequired: bool
|
|
951
|
+
) -> Dict[str, Any]:
|
|
952
|
+
"""
|
|
953
|
+
Configure how users gain access to an application.
|
|
954
|
+
|
|
955
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_application_assignment_configuration)
|
|
956
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_assignment_configuration)
|
|
957
|
+
"""
|
|
958
|
+
|
|
959
|
+
def put_application_authentication_method(
|
|
960
|
+
self,
|
|
961
|
+
*,
|
|
962
|
+
ApplicationArn: str,
|
|
963
|
+
AuthenticationMethod: AuthenticationMethodTypeDef,
|
|
964
|
+
AuthenticationMethodType: Literal["IAM"]
|
|
965
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
966
|
+
"""
|
|
967
|
+
Adds or updates an authentication method for an application.
|
|
968
|
+
|
|
969
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_application_authentication_method)
|
|
970
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_authentication_method)
|
|
971
|
+
"""
|
|
972
|
+
|
|
973
|
+
def put_application_grant(
|
|
974
|
+
self, *, ApplicationArn: str, Grant: GrantTypeDef, GrantType: GrantTypeType
|
|
975
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
976
|
+
"""
|
|
977
|
+
Adds a grant to an application.
|
|
978
|
+
|
|
979
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_application_grant)
|
|
980
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_grant)
|
|
981
|
+
"""
|
|
982
|
+
|
|
519
983
|
def put_inline_policy_to_permission_set(
|
|
520
984
|
self, *, InlinePolicy: str, InstanceArn: str, PermissionSetArn: str
|
|
521
985
|
) -> Dict[str, Any]:
|
|
@@ -525,6 +989,7 @@ class SSOAdminClient(BaseClient):
|
|
|
525
989
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_inline_policy_to_permission_set)
|
|
526
990
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_inline_policy_to_permission_set)
|
|
527
991
|
"""
|
|
992
|
+
|
|
528
993
|
def put_permissions_boundary_to_permission_set(
|
|
529
994
|
self,
|
|
530
995
|
*,
|
|
@@ -540,8 +1005,9 @@ class SSOAdminClient(BaseClient):
|
|
|
540
1005
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.put_permissions_boundary_to_permission_set)
|
|
541
1006
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_permissions_boundary_to_permission_set)
|
|
542
1007
|
"""
|
|
1008
|
+
|
|
543
1009
|
def tag_resource(
|
|
544
|
-
self, *,
|
|
1010
|
+
self, *, ResourceArn: str, Tags: Sequence[TagTypeDef], InstanceArn: str = ...
|
|
545
1011
|
) -> Dict[str, Any]:
|
|
546
1012
|
"""
|
|
547
1013
|
Associates a set of tags with a specified resource.
|
|
@@ -549,8 +1015,9 @@ class SSOAdminClient(BaseClient):
|
|
|
549
1015
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.tag_resource)
|
|
550
1016
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#tag_resource)
|
|
551
1017
|
"""
|
|
1018
|
+
|
|
552
1019
|
def untag_resource(
|
|
553
|
-
self, *,
|
|
1020
|
+
self, *, ResourceArn: str, TagKeys: Sequence[str], InstanceArn: str = ...
|
|
554
1021
|
) -> Dict[str, Any]:
|
|
555
1022
|
"""
|
|
556
1023
|
Disassociates a set of tags from a specified resource.
|
|
@@ -558,6 +1025,33 @@ class SSOAdminClient(BaseClient):
|
|
|
558
1025
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.untag_resource)
|
|
559
1026
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#untag_resource)
|
|
560
1027
|
"""
|
|
1028
|
+
|
|
1029
|
+
def update_application(
|
|
1030
|
+
self,
|
|
1031
|
+
*,
|
|
1032
|
+
ApplicationArn: str,
|
|
1033
|
+
Description: str = ...,
|
|
1034
|
+
Name: str = ...,
|
|
1035
|
+
PortalOptions: UpdateApplicationPortalOptionsTypeDef = ...,
|
|
1036
|
+
Status: ApplicationStatusType = ...
|
|
1037
|
+
) -> Dict[str, Any]:
|
|
1038
|
+
"""
|
|
1039
|
+
Updates application properties.
|
|
1040
|
+
|
|
1041
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_application)
|
|
1042
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_application)
|
|
1043
|
+
"""
|
|
1044
|
+
|
|
1045
|
+
def update_instance(self, *, InstanceArn: str, Name: str) -> Dict[str, Any]:
|
|
1046
|
+
"""
|
|
1047
|
+
Update the details for the instance of IAM Identity Center that is owned by the
|
|
1048
|
+
Amazon Web Services
|
|
1049
|
+
account.
|
|
1050
|
+
|
|
1051
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_instance)
|
|
1052
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_instance)
|
|
1053
|
+
"""
|
|
1054
|
+
|
|
561
1055
|
def update_instance_access_control_attribute_configuration(
|
|
562
1056
|
self,
|
|
563
1057
|
*,
|
|
@@ -572,6 +1066,7 @@ class SSOAdminClient(BaseClient):
|
|
|
572
1066
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_instance_access_control_attribute_configuration)
|
|
573
1067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_instance_access_control_attribute_configuration)
|
|
574
1068
|
"""
|
|
1069
|
+
|
|
575
1070
|
def update_permission_set(
|
|
576
1071
|
self,
|
|
577
1072
|
*,
|
|
@@ -587,6 +1082,23 @@ class SSOAdminClient(BaseClient):
|
|
|
587
1082
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_permission_set)
|
|
588
1083
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_permission_set)
|
|
589
1084
|
"""
|
|
1085
|
+
|
|
1086
|
+
def update_trusted_token_issuer(
|
|
1087
|
+
self,
|
|
1088
|
+
*,
|
|
1089
|
+
TrustedTokenIssuerArn: str,
|
|
1090
|
+
Name: str = ...,
|
|
1091
|
+
TrustedTokenIssuerConfiguration: TrustedTokenIssuerUpdateConfigurationTypeDef = ...
|
|
1092
|
+
) -> Dict[str, Any]:
|
|
1093
|
+
"""
|
|
1094
|
+
Updates the name of the trusted token issuer, or the path of a source attribute
|
|
1095
|
+
or destination attribute for a trusted token issuer
|
|
1096
|
+
configuration.
|
|
1097
|
+
|
|
1098
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.update_trusted_token_issuer)
|
|
1099
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_trusted_token_issuer)
|
|
1100
|
+
"""
|
|
1101
|
+
|
|
590
1102
|
@overload
|
|
591
1103
|
def get_paginator(
|
|
592
1104
|
self, operation_name: Literal["list_account_assignment_creation_status"]
|
|
@@ -595,6 +1107,7 @@ class SSOAdminClient(BaseClient):
|
|
|
595
1107
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
596
1108
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
597
1109
|
"""
|
|
1110
|
+
|
|
598
1111
|
@overload
|
|
599
1112
|
def get_paginator(
|
|
600
1113
|
self, operation_name: Literal["list_account_assignment_deletion_status"]
|
|
@@ -603,6 +1116,7 @@ class SSOAdminClient(BaseClient):
|
|
|
603
1116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
604
1117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
605
1118
|
"""
|
|
1119
|
+
|
|
606
1120
|
@overload
|
|
607
1121
|
def get_paginator(
|
|
608
1122
|
self, operation_name: Literal["list_account_assignments"]
|
|
@@ -611,6 +1125,16 @@ class SSOAdminClient(BaseClient):
|
|
|
611
1125
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
612
1126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
613
1127
|
"""
|
|
1128
|
+
|
|
1129
|
+
@overload
|
|
1130
|
+
def get_paginator(
|
|
1131
|
+
self, operation_name: Literal["list_account_assignments_for_principal"]
|
|
1132
|
+
) -> ListAccountAssignmentsForPrincipalPaginator:
|
|
1133
|
+
"""
|
|
1134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1135
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1136
|
+
"""
|
|
1137
|
+
|
|
614
1138
|
@overload
|
|
615
1139
|
def get_paginator(
|
|
616
1140
|
self, operation_name: Literal["list_accounts_for_provisioned_permission_set"]
|
|
@@ -619,6 +1143,70 @@ class SSOAdminClient(BaseClient):
|
|
|
619
1143
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
620
1144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
621
1145
|
"""
|
|
1146
|
+
|
|
1147
|
+
@overload
|
|
1148
|
+
def get_paginator(
|
|
1149
|
+
self, operation_name: Literal["list_application_access_scopes"]
|
|
1150
|
+
) -> ListApplicationAccessScopesPaginator:
|
|
1151
|
+
"""
|
|
1152
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1153
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1154
|
+
"""
|
|
1155
|
+
|
|
1156
|
+
@overload
|
|
1157
|
+
def get_paginator(
|
|
1158
|
+
self, operation_name: Literal["list_application_assignments"]
|
|
1159
|
+
) -> ListApplicationAssignmentsPaginator:
|
|
1160
|
+
"""
|
|
1161
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1162
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1163
|
+
"""
|
|
1164
|
+
|
|
1165
|
+
@overload
|
|
1166
|
+
def get_paginator(
|
|
1167
|
+
self, operation_name: Literal["list_application_assignments_for_principal"]
|
|
1168
|
+
) -> ListApplicationAssignmentsForPrincipalPaginator:
|
|
1169
|
+
"""
|
|
1170
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1171
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1172
|
+
"""
|
|
1173
|
+
|
|
1174
|
+
@overload
|
|
1175
|
+
def get_paginator(
|
|
1176
|
+
self, operation_name: Literal["list_application_authentication_methods"]
|
|
1177
|
+
) -> ListApplicationAuthenticationMethodsPaginator:
|
|
1178
|
+
"""
|
|
1179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1180
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1181
|
+
"""
|
|
1182
|
+
|
|
1183
|
+
@overload
|
|
1184
|
+
def get_paginator(
|
|
1185
|
+
self, operation_name: Literal["list_application_grants"]
|
|
1186
|
+
) -> ListApplicationGrantsPaginator:
|
|
1187
|
+
"""
|
|
1188
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1189
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1190
|
+
"""
|
|
1191
|
+
|
|
1192
|
+
@overload
|
|
1193
|
+
def get_paginator(
|
|
1194
|
+
self, operation_name: Literal["list_application_providers"]
|
|
1195
|
+
) -> ListApplicationProvidersPaginator:
|
|
1196
|
+
"""
|
|
1197
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1198
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1199
|
+
"""
|
|
1200
|
+
|
|
1201
|
+
@overload
|
|
1202
|
+
def get_paginator(
|
|
1203
|
+
self, operation_name: Literal["list_applications"]
|
|
1204
|
+
) -> ListApplicationsPaginator:
|
|
1205
|
+
"""
|
|
1206
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1207
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1208
|
+
"""
|
|
1209
|
+
|
|
622
1210
|
@overload
|
|
623
1211
|
def get_paginator(
|
|
624
1212
|
self, operation_name: Literal["list_customer_managed_policy_references_in_permission_set"]
|
|
@@ -627,12 +1215,14 @@ class SSOAdminClient(BaseClient):
|
|
|
627
1215
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
628
1216
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
629
1217
|
"""
|
|
1218
|
+
|
|
630
1219
|
@overload
|
|
631
1220
|
def get_paginator(self, operation_name: Literal["list_instances"]) -> ListInstancesPaginator:
|
|
632
1221
|
"""
|
|
633
1222
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
634
1223
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
635
1224
|
"""
|
|
1225
|
+
|
|
636
1226
|
@overload
|
|
637
1227
|
def get_paginator(
|
|
638
1228
|
self, operation_name: Literal["list_managed_policies_in_permission_set"]
|
|
@@ -641,6 +1231,7 @@ class SSOAdminClient(BaseClient):
|
|
|
641
1231
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
642
1232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
643
1233
|
"""
|
|
1234
|
+
|
|
644
1235
|
@overload
|
|
645
1236
|
def get_paginator(
|
|
646
1237
|
self, operation_name: Literal["list_permission_set_provisioning_status"]
|
|
@@ -649,6 +1240,7 @@ class SSOAdminClient(BaseClient):
|
|
|
649
1240
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
650
1241
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
651
1242
|
"""
|
|
1243
|
+
|
|
652
1244
|
@overload
|
|
653
1245
|
def get_paginator(
|
|
654
1246
|
self, operation_name: Literal["list_permission_sets"]
|
|
@@ -657,6 +1249,7 @@ class SSOAdminClient(BaseClient):
|
|
|
657
1249
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
658
1250
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
659
1251
|
"""
|
|
1252
|
+
|
|
660
1253
|
@overload
|
|
661
1254
|
def get_paginator(
|
|
662
1255
|
self, operation_name: Literal["list_permission_sets_provisioned_to_account"]
|
|
@@ -665,6 +1258,7 @@ class SSOAdminClient(BaseClient):
|
|
|
665
1258
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
666
1259
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
667
1260
|
"""
|
|
1261
|
+
|
|
668
1262
|
@overload
|
|
669
1263
|
def get_paginator(
|
|
670
1264
|
self, operation_name: Literal["list_tags_for_resource"]
|
|
@@ -673,3 +1267,12 @@ class SSOAdminClient(BaseClient):
|
|
|
673
1267
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
674
1268
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
675
1269
|
"""
|
|
1270
|
+
|
|
1271
|
+
@overload
|
|
1272
|
+
def get_paginator(
|
|
1273
|
+
self, operation_name: Literal["list_trusted_token_issuers"]
|
|
1274
|
+
) -> ListTrustedTokenIssuersPaginator:
|
|
1275
|
+
"""
|
|
1276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
|
|
1277
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
|
|
1278
|
+
"""
|