types-boto3-sso-admin 1.35.71__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.
@@ -0,0 +1,1223 @@
1
+ """
2
+ Type annotations for sso-admin service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_sso_admin.client import SSOAdminClient
11
+
12
+ session = Session()
13
+ client: SSOAdminClient = session.client("sso-admin")
14
+ ```
15
+
16
+ Copyright 2024 Vlad Emelianov
17
+ """
18
+
19
+ import sys
20
+ from typing import Any, Dict, Mapping, Type, overload
21
+
22
+ from botocore.client import BaseClient, ClientMeta
23
+
24
+ from .paginator import (
25
+ ListAccountAssignmentCreationStatusPaginator,
26
+ ListAccountAssignmentDeletionStatusPaginator,
27
+ ListAccountAssignmentsForPrincipalPaginator,
28
+ ListAccountAssignmentsPaginator,
29
+ ListAccountsForProvisionedPermissionSetPaginator,
30
+ ListApplicationAccessScopesPaginator,
31
+ ListApplicationAssignmentsForPrincipalPaginator,
32
+ ListApplicationAssignmentsPaginator,
33
+ ListApplicationAuthenticationMethodsPaginator,
34
+ ListApplicationGrantsPaginator,
35
+ ListApplicationProvidersPaginator,
36
+ ListApplicationsPaginator,
37
+ ListCustomerManagedPolicyReferencesInPermissionSetPaginator,
38
+ ListInstancesPaginator,
39
+ ListManagedPoliciesInPermissionSetPaginator,
40
+ ListPermissionSetProvisioningStatusPaginator,
41
+ ListPermissionSetsPaginator,
42
+ ListPermissionSetsProvisionedToAccountPaginator,
43
+ ListTagsForResourcePaginator,
44
+ ListTrustedTokenIssuersPaginator,
45
+ )
46
+ from .type_defs import (
47
+ AttachCustomerManagedPolicyReferenceToPermissionSetRequestRequestTypeDef,
48
+ AttachManagedPolicyToPermissionSetRequestRequestTypeDef,
49
+ CreateAccountAssignmentRequestRequestTypeDef,
50
+ CreateAccountAssignmentResponseTypeDef,
51
+ CreateApplicationAssignmentRequestRequestTypeDef,
52
+ CreateApplicationRequestRequestTypeDef,
53
+ CreateApplicationResponseTypeDef,
54
+ CreateInstanceAccessControlAttributeConfigurationRequestRequestTypeDef,
55
+ CreateInstanceRequestRequestTypeDef,
56
+ CreateInstanceResponseTypeDef,
57
+ CreatePermissionSetRequestRequestTypeDef,
58
+ CreatePermissionSetResponseTypeDef,
59
+ CreateTrustedTokenIssuerRequestRequestTypeDef,
60
+ CreateTrustedTokenIssuerResponseTypeDef,
61
+ DeleteAccountAssignmentRequestRequestTypeDef,
62
+ DeleteAccountAssignmentResponseTypeDef,
63
+ DeleteApplicationAccessScopeRequestRequestTypeDef,
64
+ DeleteApplicationAssignmentRequestRequestTypeDef,
65
+ DeleteApplicationAuthenticationMethodRequestRequestTypeDef,
66
+ DeleteApplicationGrantRequestRequestTypeDef,
67
+ DeleteApplicationRequestRequestTypeDef,
68
+ DeleteInlinePolicyFromPermissionSetRequestRequestTypeDef,
69
+ DeleteInstanceAccessControlAttributeConfigurationRequestRequestTypeDef,
70
+ DeleteInstanceRequestRequestTypeDef,
71
+ DeletePermissionsBoundaryFromPermissionSetRequestRequestTypeDef,
72
+ DeletePermissionSetRequestRequestTypeDef,
73
+ DeleteTrustedTokenIssuerRequestRequestTypeDef,
74
+ DescribeAccountAssignmentCreationStatusRequestRequestTypeDef,
75
+ DescribeAccountAssignmentCreationStatusResponseTypeDef,
76
+ DescribeAccountAssignmentDeletionStatusRequestRequestTypeDef,
77
+ DescribeAccountAssignmentDeletionStatusResponseTypeDef,
78
+ DescribeApplicationAssignmentRequestRequestTypeDef,
79
+ DescribeApplicationAssignmentResponseTypeDef,
80
+ DescribeApplicationProviderRequestRequestTypeDef,
81
+ DescribeApplicationProviderResponseTypeDef,
82
+ DescribeApplicationRequestRequestTypeDef,
83
+ DescribeApplicationResponseTypeDef,
84
+ DescribeInstanceAccessControlAttributeConfigurationRequestRequestTypeDef,
85
+ DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef,
86
+ DescribeInstanceRequestRequestTypeDef,
87
+ DescribeInstanceResponseTypeDef,
88
+ DescribePermissionSetProvisioningStatusRequestRequestTypeDef,
89
+ DescribePermissionSetProvisioningStatusResponseTypeDef,
90
+ DescribePermissionSetRequestRequestTypeDef,
91
+ DescribePermissionSetResponseTypeDef,
92
+ DescribeTrustedTokenIssuerRequestRequestTypeDef,
93
+ DescribeTrustedTokenIssuerResponseTypeDef,
94
+ DetachCustomerManagedPolicyReferenceFromPermissionSetRequestRequestTypeDef,
95
+ DetachManagedPolicyFromPermissionSetRequestRequestTypeDef,
96
+ EmptyResponseMetadataTypeDef,
97
+ GetApplicationAccessScopeRequestRequestTypeDef,
98
+ GetApplicationAccessScopeResponseTypeDef,
99
+ GetApplicationAssignmentConfigurationRequestRequestTypeDef,
100
+ GetApplicationAssignmentConfigurationResponseTypeDef,
101
+ GetApplicationAuthenticationMethodRequestRequestTypeDef,
102
+ GetApplicationAuthenticationMethodResponseTypeDef,
103
+ GetApplicationGrantRequestRequestTypeDef,
104
+ GetApplicationGrantResponseTypeDef,
105
+ GetInlinePolicyForPermissionSetRequestRequestTypeDef,
106
+ GetInlinePolicyForPermissionSetResponseTypeDef,
107
+ GetPermissionsBoundaryForPermissionSetRequestRequestTypeDef,
108
+ GetPermissionsBoundaryForPermissionSetResponseTypeDef,
109
+ ListAccountAssignmentCreationStatusRequestRequestTypeDef,
110
+ ListAccountAssignmentCreationStatusResponseTypeDef,
111
+ ListAccountAssignmentDeletionStatusRequestRequestTypeDef,
112
+ ListAccountAssignmentDeletionStatusResponseTypeDef,
113
+ ListAccountAssignmentsForPrincipalRequestRequestTypeDef,
114
+ ListAccountAssignmentsForPrincipalResponseTypeDef,
115
+ ListAccountAssignmentsRequestRequestTypeDef,
116
+ ListAccountAssignmentsResponseTypeDef,
117
+ ListAccountsForProvisionedPermissionSetRequestRequestTypeDef,
118
+ ListAccountsForProvisionedPermissionSetResponseTypeDef,
119
+ ListApplicationAccessScopesRequestRequestTypeDef,
120
+ ListApplicationAccessScopesResponseTypeDef,
121
+ ListApplicationAssignmentsForPrincipalRequestRequestTypeDef,
122
+ ListApplicationAssignmentsForPrincipalResponseTypeDef,
123
+ ListApplicationAssignmentsRequestRequestTypeDef,
124
+ ListApplicationAssignmentsResponseTypeDef,
125
+ ListApplicationAuthenticationMethodsRequestRequestTypeDef,
126
+ ListApplicationAuthenticationMethodsResponseTypeDef,
127
+ ListApplicationGrantsRequestRequestTypeDef,
128
+ ListApplicationGrantsResponseTypeDef,
129
+ ListApplicationProvidersRequestRequestTypeDef,
130
+ ListApplicationProvidersResponseTypeDef,
131
+ ListApplicationsRequestRequestTypeDef,
132
+ ListApplicationsResponseTypeDef,
133
+ ListCustomerManagedPolicyReferencesInPermissionSetRequestRequestTypeDef,
134
+ ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef,
135
+ ListInstancesRequestRequestTypeDef,
136
+ ListInstancesResponseTypeDef,
137
+ ListManagedPoliciesInPermissionSetRequestRequestTypeDef,
138
+ ListManagedPoliciesInPermissionSetResponseTypeDef,
139
+ ListPermissionSetProvisioningStatusRequestRequestTypeDef,
140
+ ListPermissionSetProvisioningStatusResponseTypeDef,
141
+ ListPermissionSetsProvisionedToAccountRequestRequestTypeDef,
142
+ ListPermissionSetsProvisionedToAccountResponseTypeDef,
143
+ ListPermissionSetsRequestRequestTypeDef,
144
+ ListPermissionSetsResponseTypeDef,
145
+ ListTagsForResourceRequestRequestTypeDef,
146
+ ListTagsForResourceResponseTypeDef,
147
+ ListTrustedTokenIssuersRequestRequestTypeDef,
148
+ ListTrustedTokenIssuersResponseTypeDef,
149
+ ProvisionPermissionSetRequestRequestTypeDef,
150
+ ProvisionPermissionSetResponseTypeDef,
151
+ PutApplicationAccessScopeRequestRequestTypeDef,
152
+ PutApplicationAssignmentConfigurationRequestRequestTypeDef,
153
+ PutApplicationAuthenticationMethodRequestRequestTypeDef,
154
+ PutApplicationGrantRequestRequestTypeDef,
155
+ PutInlinePolicyToPermissionSetRequestRequestTypeDef,
156
+ PutPermissionsBoundaryToPermissionSetRequestRequestTypeDef,
157
+ TagResourceRequestRequestTypeDef,
158
+ UntagResourceRequestRequestTypeDef,
159
+ UpdateApplicationRequestRequestTypeDef,
160
+ UpdateInstanceAccessControlAttributeConfigurationRequestRequestTypeDef,
161
+ UpdateInstanceRequestRequestTypeDef,
162
+ UpdatePermissionSetRequestRequestTypeDef,
163
+ UpdateTrustedTokenIssuerRequestRequestTypeDef,
164
+ )
165
+
166
+ if sys.version_info >= (3, 12):
167
+ from typing import Literal, Unpack
168
+ else:
169
+ from typing_extensions import Literal, Unpack
170
+
171
+ __all__ = ("SSOAdminClient",)
172
+
173
+ class BotocoreClientError(Exception):
174
+ MSG_TEMPLATE: str
175
+
176
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
177
+ self.response: Dict[str, Any]
178
+ self.operation_name: str
179
+
180
+ class Exceptions:
181
+ AccessDeniedException: Type[BotocoreClientError]
182
+ ClientError: Type[BotocoreClientError]
183
+ ConflictException: Type[BotocoreClientError]
184
+ InternalServerException: Type[BotocoreClientError]
185
+ ResourceNotFoundException: Type[BotocoreClientError]
186
+ ServiceQuotaExceededException: Type[BotocoreClientError]
187
+ ThrottlingException: Type[BotocoreClientError]
188
+ ValidationException: Type[BotocoreClientError]
189
+
190
+ class SSOAdminClient(BaseClient):
191
+ """
192
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client)
193
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/)
194
+ """
195
+
196
+ meta: ClientMeta
197
+
198
+ @property
199
+ def exceptions(self) -> Exceptions:
200
+ """
201
+ SSOAdminClient exceptions.
202
+
203
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client)
204
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#exceptions)
205
+ """
206
+
207
+ def can_paginate(self, operation_name: str) -> bool:
208
+ """
209
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/can_paginate.html)
210
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#can_paginate)
211
+ """
212
+
213
+ def generate_presigned_url(
214
+ self,
215
+ ClientMethod: str,
216
+ Params: Mapping[str, Any] = ...,
217
+ ExpiresIn: int = 3600,
218
+ HttpMethod: str = ...,
219
+ ) -> str:
220
+ """
221
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/generate_presigned_url.html)
222
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#generate_presigned_url)
223
+ """
224
+
225
+ def close(self) -> None:
226
+ """
227
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/close.html)
228
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#close)
229
+ """
230
+
231
+ def attach_customer_managed_policy_reference_to_permission_set(
232
+ self,
233
+ **kwargs: Unpack[AttachCustomerManagedPolicyReferenceToPermissionSetRequestRequestTypeDef],
234
+ ) -> Dict[str, Any]:
235
+ """
236
+ Attaches the specified customer managed policy to the specified
237
+ <a>PermissionSet</a>.
238
+
239
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/attach_customer_managed_policy_reference_to_permission_set.html)
240
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#attach_customer_managed_policy_reference_to_permission_set)
241
+ """
242
+
243
+ def attach_managed_policy_to_permission_set(
244
+ self, **kwargs: Unpack[AttachManagedPolicyToPermissionSetRequestRequestTypeDef]
245
+ ) -> Dict[str, Any]:
246
+ """
247
+ Attaches an Amazon Web Services managed policy ARN to a permission set.
248
+
249
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/attach_managed_policy_to_permission_set.html)
250
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#attach_managed_policy_to_permission_set)
251
+ """
252
+
253
+ def create_account_assignment(
254
+ self, **kwargs: Unpack[CreateAccountAssignmentRequestRequestTypeDef]
255
+ ) -> CreateAccountAssignmentResponseTypeDef:
256
+ """
257
+ Assigns access to a principal for a specified Amazon Web Services account using
258
+ a specified permission set.
259
+
260
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_account_assignment.html)
261
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_account_assignment)
262
+ """
263
+
264
+ def create_application(
265
+ self, **kwargs: Unpack[CreateApplicationRequestRequestTypeDef]
266
+ ) -> CreateApplicationResponseTypeDef:
267
+ """
268
+ Creates an application in IAM Identity Center for the given application
269
+ provider.
270
+
271
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_application.html)
272
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_application)
273
+ """
274
+
275
+ def create_application_assignment(
276
+ self, **kwargs: Unpack[CreateApplicationAssignmentRequestRequestTypeDef]
277
+ ) -> Dict[str, Any]:
278
+ """
279
+ Grant application access to a user or group.
280
+
281
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_application_assignment.html)
282
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_application_assignment)
283
+ """
284
+
285
+ def create_instance(
286
+ self, **kwargs: Unpack[CreateInstanceRequestRequestTypeDef]
287
+ ) -> CreateInstanceResponseTypeDef:
288
+ """
289
+ Creates an instance of IAM Identity Center for a standalone Amazon Web Services
290
+ account that is not managed by Organizations or a member Amazon Web Services
291
+ account in an organization.
292
+
293
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_instance.html)
294
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_instance)
295
+ """
296
+
297
+ def create_instance_access_control_attribute_configuration(
298
+ self,
299
+ **kwargs: Unpack[CreateInstanceAccessControlAttributeConfigurationRequestRequestTypeDef],
300
+ ) -> Dict[str, Any]:
301
+ """
302
+ Enables the attributes-based access control (ABAC) feature for the specified
303
+ IAM Identity Center instance.
304
+
305
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_instance_access_control_attribute_configuration.html)
306
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_instance_access_control_attribute_configuration)
307
+ """
308
+
309
+ def create_permission_set(
310
+ self, **kwargs: Unpack[CreatePermissionSetRequestRequestTypeDef]
311
+ ) -> CreatePermissionSetResponseTypeDef:
312
+ """
313
+ Creates a permission set within a specified IAM Identity Center instance.
314
+
315
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_permission_set.html)
316
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_permission_set)
317
+ """
318
+
319
+ def create_trusted_token_issuer(
320
+ self, **kwargs: Unpack[CreateTrustedTokenIssuerRequestRequestTypeDef]
321
+ ) -> CreateTrustedTokenIssuerResponseTypeDef:
322
+ """
323
+ Creates a connection to a trusted token issuer in an instance of IAM Identity
324
+ Center.
325
+
326
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/create_trusted_token_issuer.html)
327
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#create_trusted_token_issuer)
328
+ """
329
+
330
+ def delete_account_assignment(
331
+ self, **kwargs: Unpack[DeleteAccountAssignmentRequestRequestTypeDef]
332
+ ) -> DeleteAccountAssignmentResponseTypeDef:
333
+ """
334
+ Deletes a principal's access from a specified Amazon Web Services account using
335
+ a specified permission set.
336
+
337
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_account_assignment.html)
338
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_account_assignment)
339
+ """
340
+
341
+ def delete_application(
342
+ self, **kwargs: Unpack[DeleteApplicationRequestRequestTypeDef]
343
+ ) -> Dict[str, Any]:
344
+ """
345
+ Deletes the association with the application.
346
+
347
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_application.html)
348
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_application)
349
+ """
350
+
351
+ def delete_application_access_scope(
352
+ self, **kwargs: Unpack[DeleteApplicationAccessScopeRequestRequestTypeDef]
353
+ ) -> EmptyResponseMetadataTypeDef:
354
+ """
355
+ Deletes an IAM Identity Center access scope from an application.
356
+
357
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_application_access_scope.html)
358
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_application_access_scope)
359
+ """
360
+
361
+ def delete_application_assignment(
362
+ self, **kwargs: Unpack[DeleteApplicationAssignmentRequestRequestTypeDef]
363
+ ) -> Dict[str, Any]:
364
+ """
365
+ Revoke application access to an application by deleting application assignments
366
+ for a user or group.
367
+
368
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_application_assignment.html)
369
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_application_assignment)
370
+ """
371
+
372
+ def delete_application_authentication_method(
373
+ self, **kwargs: Unpack[DeleteApplicationAuthenticationMethodRequestRequestTypeDef]
374
+ ) -> EmptyResponseMetadataTypeDef:
375
+ """
376
+ Deletes an authentication method from an application.
377
+
378
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_application_authentication_method.html)
379
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_application_authentication_method)
380
+ """
381
+
382
+ def delete_application_grant(
383
+ self, **kwargs: Unpack[DeleteApplicationGrantRequestRequestTypeDef]
384
+ ) -> EmptyResponseMetadataTypeDef:
385
+ """
386
+ Deletes a grant from an application.
387
+
388
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_application_grant.html)
389
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_application_grant)
390
+ """
391
+
392
+ def delete_inline_policy_from_permission_set(
393
+ self, **kwargs: Unpack[DeleteInlinePolicyFromPermissionSetRequestRequestTypeDef]
394
+ ) -> Dict[str, Any]:
395
+ """
396
+ Deletes the inline policy from a specified permission set.
397
+
398
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_inline_policy_from_permission_set.html)
399
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
400
+ """
401
+
402
+ def delete_instance(
403
+ self, **kwargs: Unpack[DeleteInstanceRequestRequestTypeDef]
404
+ ) -> Dict[str, Any]:
405
+ """
406
+ Deletes the instance of IAM Identity Center.
407
+
408
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_instance.html)
409
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_instance)
410
+ """
411
+
412
+ def delete_instance_access_control_attribute_configuration(
413
+ self,
414
+ **kwargs: Unpack[DeleteInstanceAccessControlAttributeConfigurationRequestRequestTypeDef],
415
+ ) -> Dict[str, Any]:
416
+ """
417
+ Disables the attributes-based access control (ABAC) feature for the specified
418
+ IAM Identity Center instance and deletes all of the attribute mappings that
419
+ have been configured.
420
+
421
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_instance_access_control_attribute_configuration.html)
422
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_instance_access_control_attribute_configuration)
423
+ """
424
+
425
+ def delete_permission_set(
426
+ self, **kwargs: Unpack[DeletePermissionSetRequestRequestTypeDef]
427
+ ) -> Dict[str, Any]:
428
+ """
429
+ Deletes the specified permission set.
430
+
431
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_permission_set.html)
432
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_permission_set)
433
+ """
434
+
435
+ def delete_permissions_boundary_from_permission_set(
436
+ self, **kwargs: Unpack[DeletePermissionsBoundaryFromPermissionSetRequestRequestTypeDef]
437
+ ) -> Dict[str, Any]:
438
+ """
439
+ Deletes the permissions boundary from a specified <a>PermissionSet</a>.
440
+
441
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_permissions_boundary_from_permission_set.html)
442
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_permissions_boundary_from_permission_set)
443
+ """
444
+
445
+ def delete_trusted_token_issuer(
446
+ self, **kwargs: Unpack[DeleteTrustedTokenIssuerRequestRequestTypeDef]
447
+ ) -> Dict[str, Any]:
448
+ """
449
+ Deletes a trusted token issuer configuration from an instance of IAM Identity
450
+ Center.
451
+
452
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/delete_trusted_token_issuer.html)
453
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#delete_trusted_token_issuer)
454
+ """
455
+
456
+ def describe_account_assignment_creation_status(
457
+ self, **kwargs: Unpack[DescribeAccountAssignmentCreationStatusRequestRequestTypeDef]
458
+ ) -> DescribeAccountAssignmentCreationStatusResponseTypeDef:
459
+ """
460
+ Describes the status of the assignment creation request.
461
+
462
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_account_assignment_creation_status.html)
463
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_account_assignment_creation_status)
464
+ """
465
+
466
+ def describe_account_assignment_deletion_status(
467
+ self, **kwargs: Unpack[DescribeAccountAssignmentDeletionStatusRequestRequestTypeDef]
468
+ ) -> DescribeAccountAssignmentDeletionStatusResponseTypeDef:
469
+ """
470
+ Describes the status of the assignment deletion request.
471
+
472
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_account_assignment_deletion_status.html)
473
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_account_assignment_deletion_status)
474
+ """
475
+
476
+ def describe_application(
477
+ self, **kwargs: Unpack[DescribeApplicationRequestRequestTypeDef]
478
+ ) -> DescribeApplicationResponseTypeDef:
479
+ """
480
+ Retrieves the details of an application associated with an instance of IAM
481
+ Identity Center.
482
+
483
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_application.html)
484
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_application)
485
+ """
486
+
487
+ def describe_application_assignment(
488
+ self, **kwargs: Unpack[DescribeApplicationAssignmentRequestRequestTypeDef]
489
+ ) -> DescribeApplicationAssignmentResponseTypeDef:
490
+ """
491
+ Retrieves a direct assignment of a user or group to an application.
492
+
493
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_application_assignment.html)
494
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_application_assignment)
495
+ """
496
+
497
+ def describe_application_provider(
498
+ self, **kwargs: Unpack[DescribeApplicationProviderRequestRequestTypeDef]
499
+ ) -> DescribeApplicationProviderResponseTypeDef:
500
+ """
501
+ Retrieves details about a provider that can be used to connect an Amazon Web
502
+ Services managed application or customer managed application to IAM Identity
503
+ Center.
504
+
505
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_application_provider.html)
506
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_application_provider)
507
+ """
508
+
509
+ def describe_instance(
510
+ self, **kwargs: Unpack[DescribeInstanceRequestRequestTypeDef]
511
+ ) -> DescribeInstanceResponseTypeDef:
512
+ """
513
+ Returns the details of an instance of IAM Identity Center.
514
+
515
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_instance.html)
516
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_instance)
517
+ """
518
+
519
+ def describe_instance_access_control_attribute_configuration(
520
+ self,
521
+ **kwargs: Unpack[DescribeInstanceAccessControlAttributeConfigurationRequestRequestTypeDef],
522
+ ) -> DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef:
523
+ """
524
+ Returns the list of IAM Identity Center identity store attributes that have
525
+ been configured to work with attributes-based access control (ABAC) for the
526
+ specified IAM Identity Center instance.
527
+
528
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_instance_access_control_attribute_configuration.html)
529
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_instance_access_control_attribute_configuration)
530
+ """
531
+
532
+ def describe_permission_set(
533
+ self, **kwargs: Unpack[DescribePermissionSetRequestRequestTypeDef]
534
+ ) -> DescribePermissionSetResponseTypeDef:
535
+ """
536
+ Gets the details of the permission set.
537
+
538
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_permission_set.html)
539
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_permission_set)
540
+ """
541
+
542
+ def describe_permission_set_provisioning_status(
543
+ self, **kwargs: Unpack[DescribePermissionSetProvisioningStatusRequestRequestTypeDef]
544
+ ) -> DescribePermissionSetProvisioningStatusResponseTypeDef:
545
+ """
546
+ Describes the status for the given permission set provisioning request.
547
+
548
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_permission_set_provisioning_status.html)
549
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_permission_set_provisioning_status)
550
+ """
551
+
552
+ def describe_trusted_token_issuer(
553
+ self, **kwargs: Unpack[DescribeTrustedTokenIssuerRequestRequestTypeDef]
554
+ ) -> DescribeTrustedTokenIssuerResponseTypeDef:
555
+ """
556
+ Retrieves details about a trusted token issuer configuration stored in an
557
+ instance of IAM Identity Center.
558
+
559
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/describe_trusted_token_issuer.html)
560
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#describe_trusted_token_issuer)
561
+ """
562
+
563
+ def detach_customer_managed_policy_reference_from_permission_set(
564
+ self,
565
+ **kwargs: Unpack[
566
+ DetachCustomerManagedPolicyReferenceFromPermissionSetRequestRequestTypeDef
567
+ ],
568
+ ) -> Dict[str, Any]:
569
+ """
570
+ Detaches the specified customer managed policy from the specified
571
+ <a>PermissionSet</a>.
572
+
573
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/detach_customer_managed_policy_reference_from_permission_set.html)
574
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#detach_customer_managed_policy_reference_from_permission_set)
575
+ """
576
+
577
+ def detach_managed_policy_from_permission_set(
578
+ self, **kwargs: Unpack[DetachManagedPolicyFromPermissionSetRequestRequestTypeDef]
579
+ ) -> Dict[str, Any]:
580
+ """
581
+ Detaches the attached Amazon Web Services managed policy ARN from the specified
582
+ permission set.
583
+
584
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/detach_managed_policy_from_permission_set.html)
585
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#detach_managed_policy_from_permission_set)
586
+ """
587
+
588
+ def get_application_access_scope(
589
+ self, **kwargs: Unpack[GetApplicationAccessScopeRequestRequestTypeDef]
590
+ ) -> GetApplicationAccessScopeResponseTypeDef:
591
+ """
592
+ Retrieves the authorized targets for an IAM Identity Center access scope for an
593
+ application.
594
+
595
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_access_scope.html)
596
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_application_access_scope)
597
+ """
598
+
599
+ def get_application_assignment_configuration(
600
+ self, **kwargs: Unpack[GetApplicationAssignmentConfigurationRequestRequestTypeDef]
601
+ ) -> GetApplicationAssignmentConfigurationResponseTypeDef:
602
+ """
603
+ Retrieves the configuration of <a>PutApplicationAssignmentConfiguration</a>.
604
+
605
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_assignment_configuration.html)
606
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_application_assignment_configuration)
607
+ """
608
+
609
+ def get_application_authentication_method(
610
+ self, **kwargs: Unpack[GetApplicationAuthenticationMethodRequestRequestTypeDef]
611
+ ) -> GetApplicationAuthenticationMethodResponseTypeDef:
612
+ """
613
+ Retrieves details about an authentication method used by an application.
614
+
615
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_authentication_method.html)
616
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_application_authentication_method)
617
+ """
618
+
619
+ def get_application_grant(
620
+ self, **kwargs: Unpack[GetApplicationGrantRequestRequestTypeDef]
621
+ ) -> GetApplicationGrantResponseTypeDef:
622
+ """
623
+ Retrieves details about an application grant.
624
+
625
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_grant.html)
626
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_application_grant)
627
+ """
628
+
629
+ def get_inline_policy_for_permission_set(
630
+ self, **kwargs: Unpack[GetInlinePolicyForPermissionSetRequestRequestTypeDef]
631
+ ) -> GetInlinePolicyForPermissionSetResponseTypeDef:
632
+ """
633
+ Obtains the inline policy assigned to the permission set.
634
+
635
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_inline_policy_for_permission_set.html)
636
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_inline_policy_for_permission_set)
637
+ """
638
+
639
+ def get_permissions_boundary_for_permission_set(
640
+ self, **kwargs: Unpack[GetPermissionsBoundaryForPermissionSetRequestRequestTypeDef]
641
+ ) -> GetPermissionsBoundaryForPermissionSetResponseTypeDef:
642
+ """
643
+ Obtains the permissions boundary for a specified <a>PermissionSet</a>.
644
+
645
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_permissions_boundary_for_permission_set.html)
646
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_permissions_boundary_for_permission_set)
647
+ """
648
+
649
+ def list_account_assignment_creation_status(
650
+ self, **kwargs: Unpack[ListAccountAssignmentCreationStatusRequestRequestTypeDef]
651
+ ) -> ListAccountAssignmentCreationStatusResponseTypeDef:
652
+ """
653
+ Lists the status of the Amazon Web Services account assignment creation
654
+ requests for a specified IAM Identity Center instance.
655
+
656
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_account_assignment_creation_status.html)
657
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_account_assignment_creation_status)
658
+ """
659
+
660
+ def list_account_assignment_deletion_status(
661
+ self, **kwargs: Unpack[ListAccountAssignmentDeletionStatusRequestRequestTypeDef]
662
+ ) -> ListAccountAssignmentDeletionStatusResponseTypeDef:
663
+ """
664
+ Lists the status of the Amazon Web Services account assignment deletion
665
+ requests for a specified IAM Identity Center instance.
666
+
667
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_account_assignment_deletion_status.html)
668
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_account_assignment_deletion_status)
669
+ """
670
+
671
+ def list_account_assignments(
672
+ self, **kwargs: Unpack[ListAccountAssignmentsRequestRequestTypeDef]
673
+ ) -> ListAccountAssignmentsResponseTypeDef:
674
+ """
675
+ Lists the assignee of the specified Amazon Web Services account with the
676
+ specified permission set.
677
+
678
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_account_assignments.html)
679
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_account_assignments)
680
+ """
681
+
682
+ def list_account_assignments_for_principal(
683
+ self, **kwargs: Unpack[ListAccountAssignmentsForPrincipalRequestRequestTypeDef]
684
+ ) -> ListAccountAssignmentsForPrincipalResponseTypeDef:
685
+ """
686
+ Retrieves a list of the IAM Identity Center associated Amazon Web Services
687
+ accounts that the principal has access to.
688
+
689
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_account_assignments_for_principal.html)
690
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_account_assignments_for_principal)
691
+ """
692
+
693
+ def list_accounts_for_provisioned_permission_set(
694
+ self, **kwargs: Unpack[ListAccountsForProvisionedPermissionSetRequestRequestTypeDef]
695
+ ) -> ListAccountsForProvisionedPermissionSetResponseTypeDef:
696
+ """
697
+ Lists all the Amazon Web Services accounts where the specified permission set
698
+ is provisioned.
699
+
700
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_accounts_for_provisioned_permission_set.html)
701
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_accounts_for_provisioned_permission_set)
702
+ """
703
+
704
+ def list_application_access_scopes(
705
+ self, **kwargs: Unpack[ListApplicationAccessScopesRequestRequestTypeDef]
706
+ ) -> ListApplicationAccessScopesResponseTypeDef:
707
+ """
708
+ Lists the access scopes and authorized targets associated with an application.
709
+
710
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_access_scopes.html)
711
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_access_scopes)
712
+ """
713
+
714
+ def list_application_assignments(
715
+ self, **kwargs: Unpack[ListApplicationAssignmentsRequestRequestTypeDef]
716
+ ) -> ListApplicationAssignmentsResponseTypeDef:
717
+ """
718
+ Lists Amazon Web Services account users that are assigned to an application.
719
+
720
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_assignments.html)
721
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_assignments)
722
+ """
723
+
724
+ def list_application_assignments_for_principal(
725
+ self, **kwargs: Unpack[ListApplicationAssignmentsForPrincipalRequestRequestTypeDef]
726
+ ) -> ListApplicationAssignmentsForPrincipalResponseTypeDef:
727
+ """
728
+ Lists the applications to which a specified principal is assigned.
729
+
730
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_assignments_for_principal.html)
731
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_assignments_for_principal)
732
+ """
733
+
734
+ def list_application_authentication_methods(
735
+ self, **kwargs: Unpack[ListApplicationAuthenticationMethodsRequestRequestTypeDef]
736
+ ) -> ListApplicationAuthenticationMethodsResponseTypeDef:
737
+ """
738
+ Lists all of the authentication methods supported by the specified application.
739
+
740
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_authentication_methods.html)
741
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_authentication_methods)
742
+ """
743
+
744
+ def list_application_grants(
745
+ self, **kwargs: Unpack[ListApplicationGrantsRequestRequestTypeDef]
746
+ ) -> ListApplicationGrantsResponseTypeDef:
747
+ """
748
+ List the grants associated with an application.
749
+
750
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_grants.html)
751
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_grants)
752
+ """
753
+
754
+ def list_application_providers(
755
+ self, **kwargs: Unpack[ListApplicationProvidersRequestRequestTypeDef]
756
+ ) -> ListApplicationProvidersResponseTypeDef:
757
+ """
758
+ Lists the application providers configured in the IAM Identity Center identity
759
+ store.
760
+
761
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_application_providers.html)
762
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_application_providers)
763
+ """
764
+
765
+ def list_applications(
766
+ self, **kwargs: Unpack[ListApplicationsRequestRequestTypeDef]
767
+ ) -> ListApplicationsResponseTypeDef:
768
+ """
769
+ Lists all applications associated with the instance of IAM Identity Center.
770
+
771
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_applications.html)
772
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_applications)
773
+ """
774
+
775
+ def list_customer_managed_policy_references_in_permission_set(
776
+ self,
777
+ **kwargs: Unpack[ListCustomerManagedPolicyReferencesInPermissionSetRequestRequestTypeDef],
778
+ ) -> ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef:
779
+ """
780
+ Lists all customer managed policies attached to a specified
781
+ <a>PermissionSet</a>.
782
+
783
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_customer_managed_policy_references_in_permission_set.html)
784
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_customer_managed_policy_references_in_permission_set)
785
+ """
786
+
787
+ def list_instances(
788
+ self, **kwargs: Unpack[ListInstancesRequestRequestTypeDef]
789
+ ) -> ListInstancesResponseTypeDef:
790
+ """
791
+ Lists the details of the organization and account instances of IAM Identity
792
+ Center that were created in or visible to the account calling this API.
793
+
794
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_instances.html)
795
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_instances)
796
+ """
797
+
798
+ def list_managed_policies_in_permission_set(
799
+ self, **kwargs: Unpack[ListManagedPoliciesInPermissionSetRequestRequestTypeDef]
800
+ ) -> ListManagedPoliciesInPermissionSetResponseTypeDef:
801
+ """
802
+ Lists the Amazon Web Services managed policy that is attached to a specified
803
+ permission set.
804
+
805
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_managed_policies_in_permission_set.html)
806
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_managed_policies_in_permission_set)
807
+ """
808
+
809
+ def list_permission_set_provisioning_status(
810
+ self, **kwargs: Unpack[ListPermissionSetProvisioningStatusRequestRequestTypeDef]
811
+ ) -> ListPermissionSetProvisioningStatusResponseTypeDef:
812
+ """
813
+ Lists the status of the permission set provisioning requests for a specified
814
+ IAM Identity Center instance.
815
+
816
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_permission_set_provisioning_status.html)
817
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_permission_set_provisioning_status)
818
+ """
819
+
820
+ def list_permission_sets(
821
+ self, **kwargs: Unpack[ListPermissionSetsRequestRequestTypeDef]
822
+ ) -> ListPermissionSetsResponseTypeDef:
823
+ """
824
+ Lists the <a>PermissionSet</a>s in an IAM Identity Center instance.
825
+
826
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_permission_sets.html)
827
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_permission_sets)
828
+ """
829
+
830
+ def list_permission_sets_provisioned_to_account(
831
+ self, **kwargs: Unpack[ListPermissionSetsProvisionedToAccountRequestRequestTypeDef]
832
+ ) -> ListPermissionSetsProvisionedToAccountResponseTypeDef:
833
+ """
834
+ Lists all the permission sets that are provisioned to a specified Amazon Web
835
+ Services account.
836
+
837
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_permission_sets_provisioned_to_account.html)
838
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_permission_sets_provisioned_to_account)
839
+ """
840
+
841
+ def list_tags_for_resource(
842
+ self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
843
+ ) -> ListTagsForResourceResponseTypeDef:
844
+ """
845
+ Lists the tags that are attached to a specified resource.
846
+
847
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_tags_for_resource.html)
848
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_tags_for_resource)
849
+ """
850
+
851
+ def list_trusted_token_issuers(
852
+ self, **kwargs: Unpack[ListTrustedTokenIssuersRequestRequestTypeDef]
853
+ ) -> ListTrustedTokenIssuersResponseTypeDef:
854
+ """
855
+ Lists all the trusted token issuers configured in an instance of IAM Identity
856
+ Center.
857
+
858
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/list_trusted_token_issuers.html)
859
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#list_trusted_token_issuers)
860
+ """
861
+
862
+ def provision_permission_set(
863
+ self, **kwargs: Unpack[ProvisionPermissionSetRequestRequestTypeDef]
864
+ ) -> ProvisionPermissionSetResponseTypeDef:
865
+ """
866
+ The process by which a specified permission set is provisioned to the specified
867
+ target.
868
+
869
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/provision_permission_set.html)
870
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#provision_permission_set)
871
+ """
872
+
873
+ def put_application_access_scope(
874
+ self, **kwargs: Unpack[PutApplicationAccessScopeRequestRequestTypeDef]
875
+ ) -> EmptyResponseMetadataTypeDef:
876
+ """
877
+ Adds or updates the list of authorized targets for an IAM Identity Center
878
+ access scope for an application.
879
+
880
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_access_scope.html)
881
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_application_access_scope)
882
+ """
883
+
884
+ def put_application_assignment_configuration(
885
+ self, **kwargs: Unpack[PutApplicationAssignmentConfigurationRequestRequestTypeDef]
886
+ ) -> Dict[str, Any]:
887
+ """
888
+ Configure how users gain access to an application.
889
+
890
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_assignment_configuration.html)
891
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_application_assignment_configuration)
892
+ """
893
+
894
+ def put_application_authentication_method(
895
+ self, **kwargs: Unpack[PutApplicationAuthenticationMethodRequestRequestTypeDef]
896
+ ) -> EmptyResponseMetadataTypeDef:
897
+ """
898
+ Adds or updates an authentication method for an application.
899
+
900
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_authentication_method.html)
901
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_application_authentication_method)
902
+ """
903
+
904
+ def put_application_grant(
905
+ self, **kwargs: Unpack[PutApplicationGrantRequestRequestTypeDef]
906
+ ) -> EmptyResponseMetadataTypeDef:
907
+ """
908
+ Adds a grant to an application.
909
+
910
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_grant.html)
911
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_application_grant)
912
+ """
913
+
914
+ def put_inline_policy_to_permission_set(
915
+ self, **kwargs: Unpack[PutInlinePolicyToPermissionSetRequestRequestTypeDef]
916
+ ) -> Dict[str, Any]:
917
+ """
918
+ Attaches an inline policy to a permission set.
919
+
920
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_inline_policy_to_permission_set.html)
921
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_inline_policy_to_permission_set)
922
+ """
923
+
924
+ def put_permissions_boundary_to_permission_set(
925
+ self, **kwargs: Unpack[PutPermissionsBoundaryToPermissionSetRequestRequestTypeDef]
926
+ ) -> Dict[str, Any]:
927
+ """
928
+ Attaches an Amazon Web Services managed or customer managed policy to the
929
+ specified <a>PermissionSet</a> as a permissions boundary.
930
+
931
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_permissions_boundary_to_permission_set.html)
932
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#put_permissions_boundary_to_permission_set)
933
+ """
934
+
935
+ def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> Dict[str, Any]:
936
+ """
937
+ Associates a set of tags with a specified resource.
938
+
939
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/tag_resource.html)
940
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#tag_resource)
941
+ """
942
+
943
+ def untag_resource(
944
+ self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
945
+ ) -> Dict[str, Any]:
946
+ """
947
+ Disassociates a set of tags from a specified resource.
948
+
949
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/untag_resource.html)
950
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#untag_resource)
951
+ """
952
+
953
+ def update_application(
954
+ self, **kwargs: Unpack[UpdateApplicationRequestRequestTypeDef]
955
+ ) -> Dict[str, Any]:
956
+ """
957
+ Updates application properties.
958
+
959
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/update_application.html)
960
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#update_application)
961
+ """
962
+
963
+ def update_instance(
964
+ self, **kwargs: Unpack[UpdateInstanceRequestRequestTypeDef]
965
+ ) -> Dict[str, Any]:
966
+ """
967
+ Update the details for the instance of IAM Identity Center that is owned by the
968
+ Amazon Web Services account.
969
+
970
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/update_instance.html)
971
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#update_instance)
972
+ """
973
+
974
+ def update_instance_access_control_attribute_configuration(
975
+ self,
976
+ **kwargs: Unpack[UpdateInstanceAccessControlAttributeConfigurationRequestRequestTypeDef],
977
+ ) -> Dict[str, Any]:
978
+ """
979
+ Updates the IAM Identity Center identity store attributes that you can use with
980
+ the IAM Identity Center instance for attributes-based access control (ABAC).
981
+
982
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/update_instance_access_control_attribute_configuration.html)
983
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#update_instance_access_control_attribute_configuration)
984
+ """
985
+
986
+ def update_permission_set(
987
+ self, **kwargs: Unpack[UpdatePermissionSetRequestRequestTypeDef]
988
+ ) -> Dict[str, Any]:
989
+ """
990
+ Updates an existing permission set.
991
+
992
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/update_permission_set.html)
993
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#update_permission_set)
994
+ """
995
+
996
+ def update_trusted_token_issuer(
997
+ self, **kwargs: Unpack[UpdateTrustedTokenIssuerRequestRequestTypeDef]
998
+ ) -> Dict[str, Any]:
999
+ """
1000
+ Updates the name of the trusted token issuer, or the path of a source attribute
1001
+ or destination attribute for a trusted token issuer configuration.
1002
+
1003
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/update_trusted_token_issuer.html)
1004
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#update_trusted_token_issuer)
1005
+ """
1006
+
1007
+ @overload
1008
+ def get_paginator(
1009
+ self, operation_name: Literal["list_account_assignment_creation_status"]
1010
+ ) -> ListAccountAssignmentCreationStatusPaginator:
1011
+ """
1012
+ Create a paginator for an operation.
1013
+
1014
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1015
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1016
+ """
1017
+
1018
+ @overload
1019
+ def get_paginator(
1020
+ self, operation_name: Literal["list_account_assignment_deletion_status"]
1021
+ ) -> ListAccountAssignmentDeletionStatusPaginator:
1022
+ """
1023
+ Create a paginator for an operation.
1024
+
1025
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1026
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1027
+ """
1028
+
1029
+ @overload
1030
+ def get_paginator(
1031
+ self, operation_name: Literal["list_account_assignments_for_principal"]
1032
+ ) -> ListAccountAssignmentsForPrincipalPaginator:
1033
+ """
1034
+ Create a paginator for an operation.
1035
+
1036
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1037
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1038
+ """
1039
+
1040
+ @overload
1041
+ def get_paginator(
1042
+ self, operation_name: Literal["list_account_assignments"]
1043
+ ) -> ListAccountAssignmentsPaginator:
1044
+ """
1045
+ Create a paginator for an operation.
1046
+
1047
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1048
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1049
+ """
1050
+
1051
+ @overload
1052
+ def get_paginator(
1053
+ self, operation_name: Literal["list_accounts_for_provisioned_permission_set"]
1054
+ ) -> ListAccountsForProvisionedPermissionSetPaginator:
1055
+ """
1056
+ Create a paginator for an operation.
1057
+
1058
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1059
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1060
+ """
1061
+
1062
+ @overload
1063
+ def get_paginator(
1064
+ self, operation_name: Literal["list_application_access_scopes"]
1065
+ ) -> ListApplicationAccessScopesPaginator:
1066
+ """
1067
+ Create a paginator for an operation.
1068
+
1069
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1070
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1071
+ """
1072
+
1073
+ @overload
1074
+ def get_paginator(
1075
+ self, operation_name: Literal["list_application_assignments_for_principal"]
1076
+ ) -> ListApplicationAssignmentsForPrincipalPaginator:
1077
+ """
1078
+ Create a paginator for an operation.
1079
+
1080
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1081
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1082
+ """
1083
+
1084
+ @overload
1085
+ def get_paginator(
1086
+ self, operation_name: Literal["list_application_assignments"]
1087
+ ) -> ListApplicationAssignmentsPaginator:
1088
+ """
1089
+ Create a paginator for an operation.
1090
+
1091
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1092
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1093
+ """
1094
+
1095
+ @overload
1096
+ def get_paginator(
1097
+ self, operation_name: Literal["list_application_authentication_methods"]
1098
+ ) -> ListApplicationAuthenticationMethodsPaginator:
1099
+ """
1100
+ Create a paginator for an operation.
1101
+
1102
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1103
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1104
+ """
1105
+
1106
+ @overload
1107
+ def get_paginator(
1108
+ self, operation_name: Literal["list_application_grants"]
1109
+ ) -> ListApplicationGrantsPaginator:
1110
+ """
1111
+ Create a paginator for an operation.
1112
+
1113
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1114
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1115
+ """
1116
+
1117
+ @overload
1118
+ def get_paginator(
1119
+ self, operation_name: Literal["list_application_providers"]
1120
+ ) -> ListApplicationProvidersPaginator:
1121
+ """
1122
+ Create a paginator for an operation.
1123
+
1124
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1125
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1126
+ """
1127
+
1128
+ @overload
1129
+ def get_paginator(
1130
+ self, operation_name: Literal["list_applications"]
1131
+ ) -> ListApplicationsPaginator:
1132
+ """
1133
+ Create a paginator for an operation.
1134
+
1135
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1136
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1137
+ """
1138
+
1139
+ @overload
1140
+ def get_paginator(
1141
+ self, operation_name: Literal["list_customer_managed_policy_references_in_permission_set"]
1142
+ ) -> ListCustomerManagedPolicyReferencesInPermissionSetPaginator:
1143
+ """
1144
+ Create a paginator for an operation.
1145
+
1146
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1147
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1148
+ """
1149
+
1150
+ @overload
1151
+ def get_paginator(self, operation_name: Literal["list_instances"]) -> ListInstancesPaginator:
1152
+ """
1153
+ Create a paginator for an operation.
1154
+
1155
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1156
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1157
+ """
1158
+
1159
+ @overload
1160
+ def get_paginator(
1161
+ self, operation_name: Literal["list_managed_policies_in_permission_set"]
1162
+ ) -> ListManagedPoliciesInPermissionSetPaginator:
1163
+ """
1164
+ Create a paginator for an operation.
1165
+
1166
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1167
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1168
+ """
1169
+
1170
+ @overload
1171
+ def get_paginator(
1172
+ self, operation_name: Literal["list_permission_set_provisioning_status"]
1173
+ ) -> ListPermissionSetProvisioningStatusPaginator:
1174
+ """
1175
+ Create a paginator for an operation.
1176
+
1177
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1178
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1179
+ """
1180
+
1181
+ @overload
1182
+ def get_paginator(
1183
+ self, operation_name: Literal["list_permission_sets"]
1184
+ ) -> ListPermissionSetsPaginator:
1185
+ """
1186
+ Create a paginator for an operation.
1187
+
1188
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1189
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1190
+ """
1191
+
1192
+ @overload
1193
+ def get_paginator(
1194
+ self, operation_name: Literal["list_permission_sets_provisioned_to_account"]
1195
+ ) -> ListPermissionSetsProvisionedToAccountPaginator:
1196
+ """
1197
+ Create a paginator for an operation.
1198
+
1199
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1200
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1201
+ """
1202
+
1203
+ @overload
1204
+ def get_paginator(
1205
+ self, operation_name: Literal["list_tags_for_resource"]
1206
+ ) -> ListTagsForResourcePaginator:
1207
+ """
1208
+ Create a paginator for an operation.
1209
+
1210
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1211
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1212
+ """
1213
+
1214
+ @overload
1215
+ def get_paginator(
1216
+ self, operation_name: Literal["list_trusted_token_issuers"]
1217
+ ) -> ListTrustedTokenIssuersPaginator:
1218
+ """
1219
+ Create a paginator for an operation.
1220
+
1221
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_paginator.html)
1222
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_sso_admin/client/#get_paginator)
1223
+ """