mypy-boto3-sso-admin 1.29.0__py3-none-any.whl → 1.29.3__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.
@@ -19,12 +19,26 @@ from typing import Any, Dict, Mapping, Sequence, Type, overload
19
19
 
20
20
  from botocore.client import BaseClient, ClientMeta
21
21
 
22
- from .literals import PrincipalTypeType, ProvisioningStatusType, ProvisionTargetTypeType
22
+ from .literals import (
23
+ ApplicationStatusType,
24
+ GrantTypeType,
25
+ PrincipalTypeType,
26
+ ProvisioningStatusType,
27
+ ProvisionTargetTypeType,
28
+ )
23
29
  from .paginator import (
24
30
  ListAccountAssignmentCreationStatusPaginator,
25
31
  ListAccountAssignmentDeletionStatusPaginator,
32
+ ListAccountAssignmentsForPrincipalPaginator,
26
33
  ListAccountAssignmentsPaginator,
27
34
  ListAccountsForProvisionedPermissionSetPaginator,
35
+ ListApplicationAccessScopesPaginator,
36
+ ListApplicationAssignmentsForPrincipalPaginator,
37
+ ListApplicationAssignmentsPaginator,
38
+ ListApplicationAuthenticationMethodsPaginator,
39
+ ListApplicationGrantsPaginator,
40
+ ListApplicationProvidersPaginator,
41
+ ListApplicationsPaginator,
28
42
  ListCustomerManagedPolicyReferencesInPermissionSetPaginator,
29
43
  ListInstancesPaginator,
30
44
  ListManagedPoliciesInPermissionSetPaginator,
@@ -32,24 +46,51 @@ from .paginator import (
32
46
  ListPermissionSetsPaginator,
33
47
  ListPermissionSetsProvisionedToAccountPaginator,
34
48
  ListTagsForResourcePaginator,
49
+ ListTrustedTokenIssuersPaginator,
35
50
  )
36
51
  from .type_defs import (
52
+ AuthenticationMethodTypeDef,
37
53
  CreateAccountAssignmentResponseTypeDef,
54
+ CreateApplicationResponseTypeDef,
55
+ CreateInstanceResponseTypeDef,
38
56
  CreatePermissionSetResponseTypeDef,
57
+ CreateTrustedTokenIssuerResponseTypeDef,
39
58
  CustomerManagedPolicyReferenceTypeDef,
40
59
  DeleteAccountAssignmentResponseTypeDef,
41
60
  DescribeAccountAssignmentCreationStatusResponseTypeDef,
42
61
  DescribeAccountAssignmentDeletionStatusResponseTypeDef,
62
+ DescribeApplicationAssignmentResponseTypeDef,
63
+ DescribeApplicationProviderResponseTypeDef,
64
+ DescribeApplicationResponseTypeDef,
43
65
  DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef,
66
+ DescribeInstanceResponseTypeDef,
44
67
  DescribePermissionSetProvisioningStatusResponseTypeDef,
45
68
  DescribePermissionSetResponseTypeDef,
69
+ DescribeTrustedTokenIssuerResponseTypeDef,
70
+ EmptyResponseMetadataTypeDef,
71
+ GetApplicationAccessScopeResponseTypeDef,
72
+ GetApplicationAssignmentConfigurationResponseTypeDef,
73
+ GetApplicationAuthenticationMethodResponseTypeDef,
74
+ GetApplicationGrantResponseTypeDef,
46
75
  GetInlinePolicyForPermissionSetResponseTypeDef,
47
76
  GetPermissionsBoundaryForPermissionSetResponseTypeDef,
77
+ GrantTypeDef,
48
78
  InstanceAccessControlAttributeConfigurationTypeDef,
49
79
  ListAccountAssignmentCreationStatusResponseTypeDef,
50
80
  ListAccountAssignmentDeletionStatusResponseTypeDef,
81
+ ListAccountAssignmentsFilterTypeDef,
82
+ ListAccountAssignmentsForPrincipalResponseTypeDef,
51
83
  ListAccountAssignmentsResponseTypeDef,
52
84
  ListAccountsForProvisionedPermissionSetResponseTypeDef,
85
+ ListApplicationAccessScopesResponseTypeDef,
86
+ ListApplicationAssignmentsFilterTypeDef,
87
+ ListApplicationAssignmentsForPrincipalResponseTypeDef,
88
+ ListApplicationAssignmentsResponseTypeDef,
89
+ ListApplicationAuthenticationMethodsResponseTypeDef,
90
+ ListApplicationGrantsResponseTypeDef,
91
+ ListApplicationProvidersResponseTypeDef,
92
+ ListApplicationsFilterTypeDef,
93
+ ListApplicationsResponseTypeDef,
53
94
  ListCustomerManagedPolicyReferencesInPermissionSetResponseTypeDef,
54
95
  ListInstancesResponseTypeDef,
55
96
  ListManagedPoliciesInPermissionSetResponseTypeDef,
@@ -57,10 +98,15 @@ from .type_defs import (
57
98
  ListPermissionSetsProvisionedToAccountResponseTypeDef,
58
99
  ListPermissionSetsResponseTypeDef,
59
100
  ListTagsForResourceResponseTypeDef,
101
+ ListTrustedTokenIssuersResponseTypeDef,
60
102
  OperationStatusFilterTypeDef,
61
103
  PermissionsBoundaryTypeDef,
104
+ PortalOptionsTypeDef,
62
105
  ProvisionPermissionSetResponseTypeDef,
63
106
  TagTypeDef,
107
+ TrustedTokenIssuerConfigurationTypeDef,
108
+ TrustedTokenIssuerUpdateConfigurationTypeDef,
109
+ UpdateApplicationPortalOptionsTypeDef,
64
110
  )
65
111
 
66
112
  if sys.version_info >= (3, 12):
@@ -163,6 +209,49 @@ class SSOAdminClient(BaseClient):
163
209
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_account_assignment)
164
210
  """
165
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
+
166
255
  def create_instance_access_control_attribute_configuration(
167
256
  self,
168
257
  *,
@@ -195,6 +284,24 @@ class SSOAdminClient(BaseClient):
195
284
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#create_permission_set)
196
285
  """
197
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
+
198
305
  def delete_account_assignment(
199
306
  self,
200
307
  *,
@@ -214,6 +321,56 @@ class SSOAdminClient(BaseClient):
214
321
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_account_assignment)
215
322
  """
216
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
+
217
374
  def delete_inline_policy_from_permission_set(
218
375
  self, *, InstanceArn: str, PermissionSetArn: str
219
376
  ) -> Dict[str, Any]:
@@ -224,6 +381,14 @@ class SSOAdminClient(BaseClient):
224
381
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_inline_policy_from_permission_set)
225
382
  """
226
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
+
227
392
  def delete_instance_access_control_attribute_configuration(
228
393
  self, *, InstanceArn: str
229
394
  ) -> Dict[str, Any]:
@@ -255,6 +420,15 @@ class SSOAdminClient(BaseClient):
255
420
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#delete_permissions_boundary_from_permission_set)
256
421
  """
257
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
+
258
432
  def describe_account_assignment_creation_status(
259
433
  self, *, AccountAssignmentCreationRequestId: str, InstanceArn: str
260
434
  ) -> DescribeAccountAssignmentCreationStatusResponseTypeDef:
@@ -275,6 +449,46 @@ class SSOAdminClient(BaseClient):
275
449
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_account_assignment_deletion_status)
276
450
  """
277
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
+
278
492
  def describe_instance_access_control_attribute_configuration(
279
493
  self, *, InstanceArn: str
280
494
  ) -> DescribeInstanceAccessControlAttributeConfigurationResponseTypeDef:
@@ -308,6 +522,18 @@ class SSOAdminClient(BaseClient):
308
522
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#describe_permission_set_provisioning_status)
309
523
  """
310
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
+
311
537
  def detach_customer_managed_policy_reference_from_permission_set(
312
538
  self,
313
539
  *,
@@ -349,6 +575,47 @@ class SSOAdminClient(BaseClient):
349
575
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#generate_presigned_url)
350
576
  """
351
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
+
352
619
  def get_inline_policy_for_permission_set(
353
620
  self, *, InstanceArn: str, PermissionSetArn: str
354
621
  ) -> GetInlinePolicyForPermissionSetResponseTypeDef:
@@ -421,6 +688,25 @@ class SSOAdminClient(BaseClient):
421
688
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_account_assignments)
422
689
  """
423
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
+
424
710
  def list_accounts_for_provisioned_permission_set(
425
711
  self,
426
712
  *,
@@ -439,6 +725,89 @@ class SSOAdminClient(BaseClient):
439
725
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_accounts_for_provisioned_permission_set)
440
726
  """
441
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
+
442
811
  def list_customer_managed_policy_references_in_permission_set(
443
812
  self,
444
813
  *,
@@ -458,7 +827,9 @@ class SSOAdminClient(BaseClient):
458
827
  self, *, MaxResults: int = ..., NextToken: str = ...
459
828
  ) -> ListInstancesResponseTypeDef:
460
829
  """
461
- Lists the IAM Identity Center instances that the caller has access to.
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.
462
833
 
463
834
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.list_instances)
464
835
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_instances)
@@ -527,7 +898,7 @@ class SSOAdminClient(BaseClient):
527
898
  """
528
899
 
529
900
  def list_tags_for_resource(
530
- self, *, InstanceArn: str, ResourceArn: str, NextToken: str = ...
901
+ self, *, ResourceArn: str, InstanceArn: str = ..., NextToken: str = ...
531
902
  ) -> ListTagsForResourceResponseTypeDef:
532
903
  """
533
904
  Lists the tags that are attached to a specified resource.
@@ -536,6 +907,17 @@ class SSOAdminClient(BaseClient):
536
907
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#list_tags_for_resource)
537
908
  """
538
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
+
539
921
  def provision_permission_set(
540
922
  self,
541
923
  *,
@@ -552,6 +934,52 @@ class SSOAdminClient(BaseClient):
552
934
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#provision_permission_set)
553
935
  """
554
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
+
555
983
  def put_inline_policy_to_permission_set(
556
984
  self, *, InlinePolicy: str, InstanceArn: str, PermissionSetArn: str
557
985
  ) -> Dict[str, Any]:
@@ -579,7 +1007,7 @@ class SSOAdminClient(BaseClient):
579
1007
  """
580
1008
 
581
1009
  def tag_resource(
582
- self, *, InstanceArn: str, ResourceArn: str, Tags: Sequence[TagTypeDef]
1010
+ self, *, ResourceArn: str, Tags: Sequence[TagTypeDef], InstanceArn: str = ...
583
1011
  ) -> Dict[str, Any]:
584
1012
  """
585
1013
  Associates a set of tags with a specified resource.
@@ -589,7 +1017,7 @@ class SSOAdminClient(BaseClient):
589
1017
  """
590
1018
 
591
1019
  def untag_resource(
592
- self, *, InstanceArn: str, ResourceArn: str, TagKeys: Sequence[str]
1020
+ self, *, ResourceArn: str, TagKeys: Sequence[str], InstanceArn: str = ...
593
1021
  ) -> Dict[str, Any]:
594
1022
  """
595
1023
  Disassociates a set of tags from a specified resource.
@@ -598,6 +1026,32 @@ class SSOAdminClient(BaseClient):
598
1026
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#untag_resource)
599
1027
  """
600
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
+
601
1055
  def update_instance_access_control_attribute_configuration(
602
1056
  self,
603
1057
  *,
@@ -629,6 +1083,22 @@ class SSOAdminClient(BaseClient):
629
1083
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#update_permission_set)
630
1084
  """
631
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
+
632
1102
  @overload
633
1103
  def get_paginator(
634
1104
  self, operation_name: Literal["list_account_assignment_creation_status"]
@@ -656,6 +1126,15 @@ class SSOAdminClient(BaseClient):
656
1126
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
657
1127
  """
658
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
+
659
1138
  @overload
660
1139
  def get_paginator(
661
1140
  self, operation_name: Literal["list_accounts_for_provisioned_permission_set"]
@@ -665,6 +1144,69 @@ class SSOAdminClient(BaseClient):
665
1144
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
666
1145
  """
667
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
+
668
1210
  @overload
669
1211
  def get_paginator(
670
1212
  self, operation_name: Literal["list_customer_managed_policy_references_in_permission_set"]
@@ -725,3 +1267,12 @@ class SSOAdminClient(BaseClient):
725
1267
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin.Client.get_paginator)
726
1268
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_paginator)
727
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
+ """