aws-sdk-ssoadmin 1.17.0 → 1.20.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssoadmin/client.rb +238 -225
- data/lib/aws-sdk-ssoadmin/types.rb +251 -260
- data/lib/aws-sdk-ssoadmin.rb +1 -1
- metadata +2 -2
@@ -361,20 +361,20 @@ module Aws::SSOAdmin
|
|
361
361
|
|
362
362
|
# @!group API Operations
|
363
363
|
|
364
|
-
# Attaches the specified
|
364
|
+
# Attaches the specified customer managed policy to the specified
|
365
365
|
# PermissionSet.
|
366
366
|
#
|
367
367
|
# @option params [required, String] :instance_arn
|
368
|
-
# The ARN of the
|
369
|
-
# executed.
|
368
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
369
|
+
# will be executed.
|
370
370
|
#
|
371
371
|
# @option params [required, String] :permission_set_arn
|
372
372
|
# The ARN of the `PermissionSet`.
|
373
373
|
#
|
374
374
|
# @option params [required, Types::CustomerManagedPolicyReference] :customer_managed_policy_reference
|
375
|
-
# Specifies the name and path of
|
376
|
-
#
|
377
|
-
#
|
375
|
+
# Specifies the name and path of a customer managed policy. You must
|
376
|
+
# have an IAM policy that matches the name and path in each AWS account
|
377
|
+
# where you want to deploy your permission set.
|
378
378
|
#
|
379
379
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
380
380
|
#
|
@@ -398,8 +398,7 @@ module Aws::SSOAdmin
|
|
398
398
|
req.send_request(options)
|
399
399
|
end
|
400
400
|
|
401
|
-
# Attaches an
|
402
|
-
# set.
|
401
|
+
# Attaches an AWS managed policy ARN to a permission set.
|
403
402
|
#
|
404
403
|
# <note markdown="1"> If the permission set is already referenced by one or more account
|
405
404
|
# assignments, you will need to call ` ProvisionPermissionSet ` after
|
@@ -409,19 +408,18 @@ module Aws::SSOAdmin
|
|
409
408
|
# </note>
|
410
409
|
#
|
411
410
|
# @option params [required, String] :instance_arn
|
412
|
-
# The ARN of the
|
413
|
-
# executed. For more information about ARNs, see [Amazon
|
414
|
-
# (ARNs) and
|
411
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
412
|
+
# will be executed. For more information about ARNs, see [Amazon
|
413
|
+
# Resource Names (ARNs) and AWS Service
|
415
414
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
416
|
-
# *
|
415
|
+
# *AWS General Reference*.
|
417
416
|
#
|
418
417
|
# @option params [required, String] :permission_set_arn
|
419
418
|
# The ARN of the PermissionSet that the managed policy should be
|
420
419
|
# attached to.
|
421
420
|
#
|
422
421
|
# @option params [required, String] :managed_policy_arn
|
423
|
-
# The
|
424
|
-
# permission set.
|
422
|
+
# The AWS managed policy ARN to be attached to a permission set.
|
425
423
|
#
|
426
424
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
427
425
|
#
|
@@ -442,34 +440,40 @@ module Aws::SSOAdmin
|
|
442
440
|
req.send_request(options)
|
443
441
|
end
|
444
442
|
|
445
|
-
# Assigns access to a principal for a specified
|
446
|
-
#
|
443
|
+
# Assigns access to a principal for a specified AWS account using a
|
444
|
+
# specified permission set.
|
447
445
|
#
|
448
446
|
# <note markdown="1"> The term *principal* here refers to a user or group that is defined in
|
449
|
-
#
|
447
|
+
# IAM Identity Center.
|
450
448
|
#
|
451
449
|
# </note>
|
452
450
|
#
|
453
451
|
# <note markdown="1"> As part of a successful `CreateAccountAssignment` call, the specified
|
454
452
|
# permission set will automatically be provisioned to the account in the
|
455
|
-
# form of an IAM policy. That policy is attached to the
|
456
|
-
#
|
457
|
-
# IAM policies attached to roles in your accounts will
|
458
|
-
# automatically. In this case, you must call `
|
459
|
-
# to make these updates.
|
453
|
+
# form of an IAM policy. That policy is attached to the IAM role created
|
454
|
+
# in IAM Identity Center. If the permission set is subsequently updated,
|
455
|
+
# the corresponding IAM policies attached to roles in your accounts will
|
456
|
+
# not be updated automatically. In this case, you must call `
|
457
|
+
# ProvisionPermissionSet ` to make these updates.
|
458
|
+
#
|
459
|
+
# </note>
|
460
|
+
#
|
461
|
+
# <note markdown="1"> After a successful response, call
|
462
|
+
# `DescribeAccountAssignmentCreationStatus` to describe the status of an
|
463
|
+
# assignment creation request.
|
460
464
|
#
|
461
465
|
# </note>
|
462
466
|
#
|
463
467
|
# @option params [required, String] :instance_arn
|
464
|
-
# The ARN of the
|
465
|
-
# executed. For more information about ARNs, see [Amazon
|
466
|
-
# (ARNs) and
|
468
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
469
|
+
# will be executed. For more information about ARNs, see [Amazon
|
470
|
+
# Resource Names (ARNs) and AWS Service
|
467
471
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
468
|
-
# *
|
472
|
+
# *AWS General Reference*.
|
469
473
|
#
|
470
474
|
# @option params [required, String] :target_id
|
471
|
-
# TargetID is an
|
472
|
-
#
|
475
|
+
# TargetID is an AWS account identifier, typically a 10-12 digit string
|
476
|
+
# (For example, 123456789012).
|
473
477
|
#
|
474
478
|
# @option params [required, String] :target_type
|
475
479
|
# The entity type for which the assignment will be created.
|
@@ -482,11 +486,11 @@ module Aws::SSOAdmin
|
|
482
486
|
# The entity type for which the assignment will be created.
|
483
487
|
#
|
484
488
|
# @option params [required, String] :principal_id
|
485
|
-
# An identifier for an object in
|
486
|
-
#
|
489
|
+
# An identifier for an object in IAM Identity Center, such as a user or
|
490
|
+
# group. PrincipalIds are GUIDs (For example,
|
487
491
|
# f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about
|
488
|
-
# PrincipalIds in
|
489
|
-
#
|
492
|
+
# PrincipalIds in IAM Identity Center, see the [IAM Identity Center
|
493
|
+
# Identity Store API
|
490
494
|
# Reference](/singlesignon/latest/IdentityStoreAPIReference/welcome.html).
|
491
495
|
#
|
492
496
|
# @return [Types::CreateAccountAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -526,25 +530,31 @@ module Aws::SSOAdmin
|
|
526
530
|
end
|
527
531
|
|
528
532
|
# Enables the attributes-based access control (ABAC) feature for the
|
529
|
-
# specified
|
533
|
+
# specified IAM Identity Center instance. You can also specify new
|
530
534
|
# attributes to add to your ABAC configuration during the enabling
|
531
535
|
# process. For more information about ABAC, see [Attribute-Based Access
|
532
|
-
# Control](/singlesignon/latest/userguide/abac.html) in the *
|
533
|
-
#
|
536
|
+
# Control](/singlesignon/latest/userguide/abac.html) in the *IAM
|
537
|
+
# Identity Center User Guide*.
|
538
|
+
#
|
539
|
+
# <note markdown="1"> After a successful response, call
|
540
|
+
# `DescribeInstanceAccessControlAttributeConfiguration` to validate that
|
541
|
+
# `InstanceAccessControlAttributeConfiguration` was created.
|
542
|
+
#
|
543
|
+
# </note>
|
534
544
|
#
|
535
545
|
# @option params [required, String] :instance_arn
|
536
|
-
# The ARN of the
|
537
|
-
# executed.
|
546
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
547
|
+
# will be executed.
|
538
548
|
#
|
539
549
|
# @option params [required, Types::InstanceAccessControlAttributeConfiguration] :instance_access_control_attribute_configuration
|
540
|
-
# Specifies the
|
541
|
-
#
|
542
|
-
#
|
550
|
+
# Specifies the IAM Identity Center identity store attributes to add to
|
551
|
+
# your ABAC configuration. When using an external identity provider as
|
552
|
+
# an identity source, you can pass attributes through the SAML
|
543
553
|
# assertion. Doing so provides an alternative to configuring attributes
|
544
|
-
# from the
|
545
|
-
# passes any of these attributes,
|
546
|
-
#
|
547
|
-
#
|
554
|
+
# from the IAM Identity Center identity store. If a SAML assertion
|
555
|
+
# passes any of these attributes, IAM Identity Center will replace the
|
556
|
+
# attribute value with the value from the IAM Identity Center identity
|
557
|
+
# store.
|
548
558
|
#
|
549
559
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
550
560
|
#
|
@@ -573,10 +583,11 @@ module Aws::SSOAdmin
|
|
573
583
|
req.send_request(options)
|
574
584
|
end
|
575
585
|
|
576
|
-
# Creates a permission set within a specified
|
586
|
+
# Creates a permission set within a specified IAM Identity Center
|
587
|
+
# instance.
|
577
588
|
#
|
578
|
-
# <note markdown="1"> To grant users and groups access to
|
579
|
-
#
|
589
|
+
# <note markdown="1"> To grant users and groups access to AWS account resources, use `
|
590
|
+
# CreateAccountAssignment `.
|
580
591
|
#
|
581
592
|
# </note>
|
582
593
|
#
|
@@ -587,11 +598,11 @@ module Aws::SSOAdmin
|
|
587
598
|
# The description of the PermissionSet.
|
588
599
|
#
|
589
600
|
# @option params [required, String] :instance_arn
|
590
|
-
# The ARN of the
|
591
|
-
# executed. For more information about ARNs, see [Amazon
|
592
|
-
# (ARNs) and
|
601
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
602
|
+
# will be executed. For more information about ARNs, see [Amazon
|
603
|
+
# Resource Names (ARNs) and AWS Service
|
593
604
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
594
|
-
# *
|
605
|
+
# *AWS General Reference*.
|
595
606
|
#
|
596
607
|
# @option params [String] :session_duration
|
597
608
|
# The length of time that the application user sessions are valid in the
|
@@ -642,19 +653,25 @@ module Aws::SSOAdmin
|
|
642
653
|
req.send_request(options)
|
643
654
|
end
|
644
655
|
|
645
|
-
# Deletes a principal's access from a specified
|
646
|
-
#
|
656
|
+
# Deletes a principal's access from a specified AWS account using a
|
657
|
+
# specified permission set.
|
658
|
+
#
|
659
|
+
# <note markdown="1"> After a successful response, call
|
660
|
+
# `DescribeAccountAssignmentCreationStatus` to describe the status of an
|
661
|
+
# assignment deletion request.
|
662
|
+
#
|
663
|
+
# </note>
|
647
664
|
#
|
648
665
|
# @option params [required, String] :instance_arn
|
649
|
-
# The ARN of the
|
650
|
-
# executed. For more information about ARNs, see [Amazon
|
651
|
-
# (ARNs) and
|
666
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
667
|
+
# will be executed. For more information about ARNs, see [Amazon
|
668
|
+
# Resource Names (ARNs) and AWS Service
|
652
669
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
653
|
-
# *
|
670
|
+
# *AWS General Reference*.
|
654
671
|
#
|
655
672
|
# @option params [required, String] :target_id
|
656
|
-
# TargetID is an
|
657
|
-
#
|
673
|
+
# TargetID is an AWS account identifier, typically a 10-12 digit string
|
674
|
+
# (For example, 123456789012).
|
658
675
|
#
|
659
676
|
# @option params [required, String] :target_type
|
660
677
|
# The entity type for which the assignment will be deleted.
|
@@ -666,11 +683,11 @@ module Aws::SSOAdmin
|
|
666
683
|
# The entity type for which the assignment will be deleted.
|
667
684
|
#
|
668
685
|
# @option params [required, String] :principal_id
|
669
|
-
# An identifier for an object in
|
670
|
-
#
|
686
|
+
# An identifier for an object in IAM Identity Center, such as a user or
|
687
|
+
# group. PrincipalIds are GUIDs (For example,
|
671
688
|
# f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about
|
672
|
-
# PrincipalIds in
|
673
|
-
#
|
689
|
+
# PrincipalIds in IAM Identity Center, see the [IAM Identity Center
|
690
|
+
# Identity Store API
|
674
691
|
# Reference](/singlesignon/latest/IdentityStoreAPIReference/welcome.html).
|
675
692
|
#
|
676
693
|
# @return [Types::DeleteAccountAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -712,11 +729,11 @@ module Aws::SSOAdmin
|
|
712
729
|
# Deletes the inline policy from a specified permission set.
|
713
730
|
#
|
714
731
|
# @option params [required, String] :instance_arn
|
715
|
-
# The ARN of the
|
716
|
-
# executed. For more information about ARNs, see [Amazon
|
717
|
-
# (ARNs) and
|
732
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
733
|
+
# will be executed. For more information about ARNs, see [Amazon
|
734
|
+
# Resource Names (ARNs) and AWS Service
|
718
735
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
719
|
-
# *
|
736
|
+
# *AWS General Reference*.
|
720
737
|
#
|
721
738
|
# @option params [required, String] :permission_set_arn
|
722
739
|
# The ARN of the permission set that will be used to remove access.
|
@@ -740,17 +757,17 @@ module Aws::SSOAdmin
|
|
740
757
|
end
|
741
758
|
|
742
759
|
# Disables the attributes-based access control (ABAC) feature for the
|
743
|
-
# specified
|
760
|
+
# specified IAM Identity Center instance and deletes all of the
|
744
761
|
# attribute mappings that have been configured. Once deleted, any
|
745
762
|
# attributes that are received from an identity source and any custom
|
746
763
|
# attributes you have previously configured will not be passed. For more
|
747
764
|
# information about ABAC, see [Attribute-Based Access
|
748
|
-
# Control](/singlesignon/latest/userguide/abac.html) in the *
|
749
|
-
#
|
765
|
+
# Control](/singlesignon/latest/userguide/abac.html) in the *IAM
|
766
|
+
# Identity Center User Guide*.
|
750
767
|
#
|
751
768
|
# @option params [required, String] :instance_arn
|
752
|
-
# The ARN of the
|
753
|
-
# executed.
|
769
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
770
|
+
# will be executed.
|
754
771
|
#
|
755
772
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
756
773
|
#
|
@@ -772,11 +789,11 @@ module Aws::SSOAdmin
|
|
772
789
|
# Deletes the specified permission set.
|
773
790
|
#
|
774
791
|
# @option params [required, String] :instance_arn
|
775
|
-
# The ARN of the
|
776
|
-
# executed. For more information about ARNs, see [Amazon
|
777
|
-
# (ARNs) and
|
792
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
793
|
+
# will be executed. For more information about ARNs, see [Amazon
|
794
|
+
# Resource Names (ARNs) and AWS Service
|
778
795
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
779
|
-
# *
|
796
|
+
# *AWS General Reference*.
|
780
797
|
#
|
781
798
|
# @option params [required, String] :permission_set_arn
|
782
799
|
# The ARN of the permission set that should be deleted.
|
@@ -802,8 +819,8 @@ module Aws::SSOAdmin
|
|
802
819
|
# Deletes the permissions boundary from a specified PermissionSet.
|
803
820
|
#
|
804
821
|
# @option params [required, String] :instance_arn
|
805
|
-
# The ARN of the
|
806
|
-
# executed.
|
822
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
823
|
+
# will be executed.
|
807
824
|
#
|
808
825
|
# @option params [required, String] :permission_set_arn
|
809
826
|
# The ARN of the `PermissionSet`.
|
@@ -829,11 +846,11 @@ module Aws::SSOAdmin
|
|
829
846
|
# Describes the status of the assignment creation request.
|
830
847
|
#
|
831
848
|
# @option params [required, String] :instance_arn
|
832
|
-
# The ARN of the
|
833
|
-
# executed. For more information about ARNs, see [Amazon
|
834
|
-
# (ARNs) and
|
849
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
850
|
+
# will be executed. For more information about ARNs, see [Amazon
|
851
|
+
# Resource Names (ARNs) and AWS Service
|
835
852
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
836
|
-
# *
|
853
|
+
# *AWS General Reference*.
|
837
854
|
#
|
838
855
|
# @option params [required, String] :account_assignment_creation_request_id
|
839
856
|
# The identifier that is used to track the request operation progress.
|
@@ -873,11 +890,11 @@ module Aws::SSOAdmin
|
|
873
890
|
# Describes the status of the assignment deletion request.
|
874
891
|
#
|
875
892
|
# @option params [required, String] :instance_arn
|
876
|
-
# The ARN of the
|
877
|
-
# executed. For more information about ARNs, see [Amazon
|
878
|
-
# (ARNs) and
|
893
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
894
|
+
# will be executed. For more information about ARNs, see [Amazon
|
895
|
+
# Resource Names (ARNs) and AWS Service
|
879
896
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
880
|
-
# *
|
897
|
+
# *AWS General Reference*.
|
881
898
|
#
|
882
899
|
# @option params [required, String] :account_assignment_deletion_request_id
|
883
900
|
# The identifier that is used to track the request operation progress.
|
@@ -914,17 +931,17 @@ module Aws::SSOAdmin
|
|
914
931
|
req.send_request(options)
|
915
932
|
end
|
916
933
|
|
917
|
-
# Returns the list of
|
918
|
-
#
|
919
|
-
# (ABAC) for the specified
|
920
|
-
#
|
934
|
+
# Returns the list of IAM Identity Center identity store attributes that
|
935
|
+
# have been configured to work with attributes-based access control
|
936
|
+
# (ABAC) for the specified IAM Identity Center instance. This will not
|
937
|
+
# return attributes configured and sent by an external identity
|
921
938
|
# provider. For more information about ABAC, see [Attribute-Based Access
|
922
|
-
# Control](/singlesignon/latest/userguide/abac.html) in the *
|
923
|
-
#
|
939
|
+
# Control](/singlesignon/latest/userguide/abac.html) in the *IAM
|
940
|
+
# Identity Center User Guide*.
|
924
941
|
#
|
925
942
|
# @option params [required, String] :instance_arn
|
926
|
-
# The ARN of the
|
927
|
-
# executed.
|
943
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
944
|
+
# will be executed.
|
928
945
|
#
|
929
946
|
# @return [Types::DescribeInstanceAccessControlAttributeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
930
947
|
#
|
@@ -959,11 +976,11 @@ module Aws::SSOAdmin
|
|
959
976
|
# Gets the details of the permission set.
|
960
977
|
#
|
961
978
|
# @option params [required, String] :instance_arn
|
962
|
-
# The ARN of the
|
963
|
-
# executed. For more information about ARNs, see [Amazon
|
964
|
-
# (ARNs) and
|
979
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
980
|
+
# will be executed. For more information about ARNs, see [Amazon
|
981
|
+
# Resource Names (ARNs) and AWS Service
|
965
982
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
966
|
-
# *
|
983
|
+
# *AWS General Reference*.
|
967
984
|
#
|
968
985
|
# @option params [required, String] :permission_set_arn
|
969
986
|
# The ARN of the permission set.
|
@@ -1001,11 +1018,11 @@ module Aws::SSOAdmin
|
|
1001
1018
|
# request.
|
1002
1019
|
#
|
1003
1020
|
# @option params [required, String] :instance_arn
|
1004
|
-
# The ARN of the
|
1005
|
-
# executed. For more information about ARNs, see [Amazon
|
1006
|
-
# (ARNs) and
|
1021
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1022
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1023
|
+
# Resource Names (ARNs) and AWS Service
|
1007
1024
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1008
|
-
# *
|
1025
|
+
# *AWS General Reference*.
|
1009
1026
|
#
|
1010
1027
|
# @option params [required, String] :provision_permission_set_request_id
|
1011
1028
|
# The identifier that is provided by the ProvisionPermissionSet call to
|
@@ -1040,20 +1057,20 @@ module Aws::SSOAdmin
|
|
1040
1057
|
req.send_request(options)
|
1041
1058
|
end
|
1042
1059
|
|
1043
|
-
# Detaches the specified
|
1060
|
+
# Detaches the specified customer managed policy from the specified
|
1044
1061
|
# PermissionSet.
|
1045
1062
|
#
|
1046
1063
|
# @option params [required, String] :instance_arn
|
1047
|
-
# The ARN of the
|
1048
|
-
# executed.
|
1064
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1065
|
+
# will be executed.
|
1049
1066
|
#
|
1050
1067
|
# @option params [required, String] :permission_set_arn
|
1051
1068
|
# The ARN of the `PermissionSet`.
|
1052
1069
|
#
|
1053
1070
|
# @option params [required, Types::CustomerManagedPolicyReference] :customer_managed_policy_reference
|
1054
|
-
# Specifies the name and path of
|
1055
|
-
#
|
1056
|
-
#
|
1071
|
+
# Specifies the name and path of a customer managed policy. You must
|
1072
|
+
# have an IAM policy that matches the name and path in each AWS account
|
1073
|
+
# where you want to deploy your permission set.
|
1057
1074
|
#
|
1058
1075
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1059
1076
|
#
|
@@ -1077,22 +1094,21 @@ module Aws::SSOAdmin
|
|
1077
1094
|
req.send_request(options)
|
1078
1095
|
end
|
1079
1096
|
|
1080
|
-
# Detaches the attached
|
1081
|
-
#
|
1097
|
+
# Detaches the attached AWS managed policy ARN from the specified
|
1098
|
+
# permission set.
|
1082
1099
|
#
|
1083
1100
|
# @option params [required, String] :instance_arn
|
1084
|
-
# The ARN of the
|
1085
|
-
# executed. For more information about ARNs, see [Amazon
|
1086
|
-
# (ARNs) and
|
1101
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1102
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1103
|
+
# Resource Names (ARNs) and AWS Service
|
1087
1104
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1088
|
-
# *
|
1105
|
+
# *AWS General Reference*.
|
1089
1106
|
#
|
1090
1107
|
# @option params [required, String] :permission_set_arn
|
1091
1108
|
# The ARN of the PermissionSet from which the policy should be detached.
|
1092
1109
|
#
|
1093
1110
|
# @option params [required, String] :managed_policy_arn
|
1094
|
-
# The
|
1095
|
-
# permission set.
|
1111
|
+
# The AWS managed policy ARN to be detached from a permission set.
|
1096
1112
|
#
|
1097
1113
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1098
1114
|
#
|
@@ -1116,11 +1132,11 @@ module Aws::SSOAdmin
|
|
1116
1132
|
# Obtains the inline policy assigned to the permission set.
|
1117
1133
|
#
|
1118
1134
|
# @option params [required, String] :instance_arn
|
1119
|
-
# The ARN of the
|
1120
|
-
# executed. For more information about ARNs, see [Amazon
|
1121
|
-
# (ARNs) and
|
1135
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1136
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1137
|
+
# Resource Names (ARNs) and AWS Service
|
1122
1138
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1123
|
-
# *
|
1139
|
+
# *AWS General Reference*.
|
1124
1140
|
#
|
1125
1141
|
# @option params [required, String] :permission_set_arn
|
1126
1142
|
# The ARN of the permission set.
|
@@ -1152,8 +1168,8 @@ module Aws::SSOAdmin
|
|
1152
1168
|
# Obtains the permissions boundary for a specified PermissionSet.
|
1153
1169
|
#
|
1154
1170
|
# @option params [required, String] :instance_arn
|
1155
|
-
# The ARN of the
|
1156
|
-
# executed.
|
1171
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1172
|
+
# will be executed.
|
1157
1173
|
#
|
1158
1174
|
# @option params [required, String] :permission_set_arn
|
1159
1175
|
# The ARN of the `PermissionSet`.
|
@@ -1184,15 +1200,15 @@ module Aws::SSOAdmin
|
|
1184
1200
|
req.send_request(options)
|
1185
1201
|
end
|
1186
1202
|
|
1187
|
-
# Lists the status of the
|
1188
|
-
#
|
1203
|
+
# Lists the status of the AWS account assignment creation requests for a
|
1204
|
+
# specified IAM Identity Center instance.
|
1189
1205
|
#
|
1190
1206
|
# @option params [required, String] :instance_arn
|
1191
|
-
# The ARN of the
|
1192
|
-
# executed. For more information about ARNs, see [Amazon
|
1193
|
-
# (ARNs) and
|
1207
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1208
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1209
|
+
# Resource Names (ARNs) and AWS Service
|
1194
1210
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1195
|
-
# *
|
1211
|
+
# *AWS General Reference*.
|
1196
1212
|
#
|
1197
1213
|
# @option params [Integer] :max_results
|
1198
1214
|
# The maximum number of results to display for the assignment.
|
@@ -1239,15 +1255,15 @@ module Aws::SSOAdmin
|
|
1239
1255
|
req.send_request(options)
|
1240
1256
|
end
|
1241
1257
|
|
1242
|
-
# Lists the status of the
|
1243
|
-
#
|
1258
|
+
# Lists the status of the AWS account assignment deletion requests for a
|
1259
|
+
# specified IAM Identity Center instance.
|
1244
1260
|
#
|
1245
1261
|
# @option params [required, String] :instance_arn
|
1246
|
-
# The ARN of the
|
1247
|
-
# executed. For more information about ARNs, see [Amazon
|
1248
|
-
# (ARNs) and
|
1262
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1263
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1264
|
+
# Resource Names (ARNs) and AWS Service
|
1249
1265
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1250
|
-
# *
|
1266
|
+
# *AWS General Reference*.
|
1251
1267
|
#
|
1252
1268
|
# @option params [Integer] :max_results
|
1253
1269
|
# The maximum number of results to display for the assignment.
|
@@ -1294,19 +1310,18 @@ module Aws::SSOAdmin
|
|
1294
1310
|
req.send_request(options)
|
1295
1311
|
end
|
1296
1312
|
|
1297
|
-
# Lists the assignee of the specified
|
1298
|
-
#
|
1313
|
+
# Lists the assignee of the specified AWS account with the specified
|
1314
|
+
# permission set.
|
1299
1315
|
#
|
1300
1316
|
# @option params [required, String] :instance_arn
|
1301
|
-
# The ARN of the
|
1302
|
-
# executed. For more information about ARNs, see [Amazon
|
1303
|
-
# (ARNs) and
|
1317
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1318
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1319
|
+
# Resource Names (ARNs) and AWS Service
|
1304
1320
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1305
|
-
# *
|
1321
|
+
# *AWS General Reference*.
|
1306
1322
|
#
|
1307
1323
|
# @option params [required, String] :account_id
|
1308
|
-
# The identifier of the
|
1309
|
-
# the assignments.
|
1324
|
+
# The identifier of the AWS account from which to list the assignments.
|
1310
1325
|
#
|
1311
1326
|
# @option params [required, String] :permission_set_arn
|
1312
1327
|
# The ARN of the permission set from which to list assignments.
|
@@ -1353,23 +1368,22 @@ module Aws::SSOAdmin
|
|
1353
1368
|
req.send_request(options)
|
1354
1369
|
end
|
1355
1370
|
|
1356
|
-
# Lists all the
|
1357
|
-
#
|
1371
|
+
# Lists all the AWS accounts where the specified permission set is
|
1372
|
+
# provisioned.
|
1358
1373
|
#
|
1359
1374
|
# @option params [required, String] :instance_arn
|
1360
|
-
# The ARN of the
|
1361
|
-
# executed. For more information about ARNs, see [Amazon
|
1362
|
-
# (ARNs) and
|
1375
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1376
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1377
|
+
# Resource Names (ARNs) and AWS Service
|
1363
1378
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1364
|
-
# *
|
1379
|
+
# *AWS General Reference*.
|
1365
1380
|
#
|
1366
1381
|
# @option params [required, String] :permission_set_arn
|
1367
|
-
# The ARN of the PermissionSet from which the associated
|
1368
|
-
#
|
1382
|
+
# The ARN of the PermissionSet from which the associated AWS accounts
|
1383
|
+
# will be listed.
|
1369
1384
|
#
|
1370
1385
|
# @option params [String] :provisioning_status
|
1371
|
-
# The permission set provisioning status for an
|
1372
|
-
# account.
|
1386
|
+
# The permission set provisioning status for an AWS account.
|
1373
1387
|
#
|
1374
1388
|
# @option params [Integer] :max_results
|
1375
1389
|
# The maximum number of results to display for the PermissionSet.
|
@@ -1410,12 +1424,12 @@ module Aws::SSOAdmin
|
|
1410
1424
|
req.send_request(options)
|
1411
1425
|
end
|
1412
1426
|
|
1413
|
-
# Lists all
|
1427
|
+
# Lists all customer managed policies attached to a specified
|
1414
1428
|
# PermissionSet.
|
1415
1429
|
#
|
1416
1430
|
# @option params [required, String] :instance_arn
|
1417
|
-
# The ARN of the
|
1418
|
-
# executed.
|
1431
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1432
|
+
# will be executed.
|
1419
1433
|
#
|
1420
1434
|
# @option params [required, String] :permission_set_arn
|
1421
1435
|
# The ARN of the `PermissionSet`.
|
@@ -1459,7 +1473,7 @@ module Aws::SSOAdmin
|
|
1459
1473
|
req.send_request(options)
|
1460
1474
|
end
|
1461
1475
|
|
1462
|
-
# Lists the
|
1476
|
+
# Lists the IAM Identity Center instances that the caller has access to.
|
1463
1477
|
#
|
1464
1478
|
# @option params [Integer] :max_results
|
1465
1479
|
# The maximum number of results to display for the instance.
|
@@ -1498,15 +1512,15 @@ module Aws::SSOAdmin
|
|
1498
1512
|
req.send_request(options)
|
1499
1513
|
end
|
1500
1514
|
|
1501
|
-
# Lists the
|
1502
|
-
#
|
1515
|
+
# Lists the AWS managed policy that is attached to a specified
|
1516
|
+
# permission set.
|
1503
1517
|
#
|
1504
1518
|
# @option params [required, String] :instance_arn
|
1505
|
-
# The ARN of the
|
1506
|
-
# executed. For more information about ARNs, see [Amazon
|
1507
|
-
# (ARNs) and
|
1519
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1520
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1521
|
+
# Resource Names (ARNs) and AWS Service
|
1508
1522
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1509
|
-
# *
|
1523
|
+
# *AWS General Reference*.
|
1510
1524
|
#
|
1511
1525
|
# @option params [required, String] :permission_set_arn
|
1512
1526
|
# The ARN of the PermissionSet whose managed policies will be listed.
|
@@ -1551,14 +1565,14 @@ module Aws::SSOAdmin
|
|
1551
1565
|
end
|
1552
1566
|
|
1553
1567
|
# Lists the status of the permission set provisioning requests for a
|
1554
|
-
# specified
|
1568
|
+
# specified IAM Identity Center instance.
|
1555
1569
|
#
|
1556
1570
|
# @option params [required, String] :instance_arn
|
1557
|
-
# The ARN of the
|
1558
|
-
# executed. For more information about ARNs, see [Amazon
|
1559
|
-
# (ARNs) and
|
1571
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1572
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1573
|
+
# Resource Names (ARNs) and AWS Service
|
1560
1574
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1561
|
-
# *
|
1575
|
+
# *AWS General Reference*.
|
1562
1576
|
#
|
1563
1577
|
# @option params [Integer] :max_results
|
1564
1578
|
# The maximum number of results to display for the assignment.
|
@@ -1605,14 +1619,14 @@ module Aws::SSOAdmin
|
|
1605
1619
|
req.send_request(options)
|
1606
1620
|
end
|
1607
1621
|
|
1608
|
-
# Lists the PermissionSets in an
|
1622
|
+
# Lists the PermissionSets in an IAM Identity Center instance.
|
1609
1623
|
#
|
1610
1624
|
# @option params [required, String] :instance_arn
|
1611
|
-
# The ARN of the
|
1612
|
-
# executed. For more information about ARNs, see [Amazon
|
1613
|
-
# (ARNs) and
|
1625
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1626
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1627
|
+
# Resource Names (ARNs) and AWS Service
|
1614
1628
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1615
|
-
# *
|
1629
|
+
# *AWS General Reference*.
|
1616
1630
|
#
|
1617
1631
|
# @option params [String] :next_token
|
1618
1632
|
# The pagination token for the list API. Initially the value is null.
|
@@ -1651,19 +1665,18 @@ module Aws::SSOAdmin
|
|
1651
1665
|
req.send_request(options)
|
1652
1666
|
end
|
1653
1667
|
|
1654
|
-
# Lists all the permission sets that are provisioned to a specified
|
1655
|
-
#
|
1668
|
+
# Lists all the permission sets that are provisioned to a specified AWS
|
1669
|
+
# account.
|
1656
1670
|
#
|
1657
1671
|
# @option params [required, String] :instance_arn
|
1658
|
-
# The ARN of the
|
1659
|
-
# executed. For more information about ARNs, see [Amazon
|
1660
|
-
# (ARNs) and
|
1672
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1673
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1674
|
+
# Resource Names (ARNs) and AWS Service
|
1661
1675
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1662
|
-
# *
|
1676
|
+
# *AWS General Reference*.
|
1663
1677
|
#
|
1664
1678
|
# @option params [required, String] :account_id
|
1665
|
-
# The identifier of the
|
1666
|
-
# the assignments.
|
1679
|
+
# The identifier of the AWS account from which to list the assignments.
|
1667
1680
|
#
|
1668
1681
|
# @option params [String] :provisioning_status
|
1669
1682
|
# The status object for the permission set provisioning operation.
|
@@ -1710,11 +1723,11 @@ module Aws::SSOAdmin
|
|
1710
1723
|
# Lists the tags that are attached to a specified resource.
|
1711
1724
|
#
|
1712
1725
|
# @option params [required, String] :instance_arn
|
1713
|
-
# The ARN of the
|
1714
|
-
# executed. For more information about ARNs, see [Amazon
|
1715
|
-
# (ARNs) and
|
1726
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1727
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1728
|
+
# Resource Names (ARNs) and AWS Service
|
1716
1729
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1717
|
-
# *
|
1730
|
+
# *AWS General Reference*.
|
1718
1731
|
#
|
1719
1732
|
# @option params [required, String] :resource_arn
|
1720
1733
|
# The ARN of the resource with the tags to be listed.
|
@@ -1758,18 +1771,18 @@ module Aws::SSOAdmin
|
|
1758
1771
|
# specified target.
|
1759
1772
|
#
|
1760
1773
|
# @option params [required, String] :instance_arn
|
1761
|
-
# The ARN of the
|
1762
|
-
# executed. For more information about ARNs, see [Amazon
|
1763
|
-
# (ARNs) and
|
1774
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1775
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1776
|
+
# Resource Names (ARNs) and AWS Service
|
1764
1777
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1765
|
-
# *
|
1778
|
+
# *AWS General Reference*.
|
1766
1779
|
#
|
1767
1780
|
# @option params [required, String] :permission_set_arn
|
1768
1781
|
# The ARN of the permission set.
|
1769
1782
|
#
|
1770
1783
|
# @option params [String] :target_id
|
1771
|
-
# TargetID is an
|
1772
|
-
#
|
1784
|
+
# TargetID is an AWS account identifier, typically a 10-12 digit string
|
1785
|
+
# (For example, 123456789012).
|
1773
1786
|
#
|
1774
1787
|
# @option params [required, String] :target_type
|
1775
1788
|
# The entity type for which the assignment will be created.
|
@@ -1805,7 +1818,7 @@ module Aws::SSOAdmin
|
|
1805
1818
|
req.send_request(options)
|
1806
1819
|
end
|
1807
1820
|
|
1808
|
-
# Attaches an
|
1821
|
+
# Attaches an inline policy to a permission set.
|
1809
1822
|
#
|
1810
1823
|
# <note markdown="1"> If the permission set is already referenced by one or more account
|
1811
1824
|
# assignments, you will need to call ` ProvisionPermissionSet ` after
|
@@ -1815,17 +1828,17 @@ module Aws::SSOAdmin
|
|
1815
1828
|
# </note>
|
1816
1829
|
#
|
1817
1830
|
# @option params [required, String] :instance_arn
|
1818
|
-
# The ARN of the
|
1819
|
-
# executed. For more information about ARNs, see [Amazon
|
1820
|
-
# (ARNs) and
|
1831
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1832
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1833
|
+
# Resource Names (ARNs) and AWS Service
|
1821
1834
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1822
|
-
# *
|
1835
|
+
# *AWS General Reference*.
|
1823
1836
|
#
|
1824
1837
|
# @option params [required, String] :permission_set_arn
|
1825
1838
|
# The ARN of the permission set.
|
1826
1839
|
#
|
1827
1840
|
# @option params [required, String] :inline_policy
|
1828
|
-
# The
|
1841
|
+
# The inline policy to attach to a PermissionSet.
|
1829
1842
|
#
|
1830
1843
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1831
1844
|
#
|
@@ -1846,12 +1859,12 @@ module Aws::SSOAdmin
|
|
1846
1859
|
req.send_request(options)
|
1847
1860
|
end
|
1848
1861
|
|
1849
|
-
# Attaches an
|
1850
|
-
#
|
1862
|
+
# Attaches an AWS managed or customer managed policy to the specified
|
1863
|
+
# PermissionSet as a permissions boundary.
|
1851
1864
|
#
|
1852
1865
|
# @option params [required, String] :instance_arn
|
1853
|
-
# The ARN of the
|
1854
|
-
# executed.
|
1866
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1867
|
+
# will be executed.
|
1855
1868
|
#
|
1856
1869
|
# @option params [required, String] :permission_set_arn
|
1857
1870
|
# The ARN of the `PermissionSet`.
|
@@ -1887,11 +1900,11 @@ module Aws::SSOAdmin
|
|
1887
1900
|
# Associates a set of tags with a specified resource.
|
1888
1901
|
#
|
1889
1902
|
# @option params [required, String] :instance_arn
|
1890
|
-
# The ARN of the
|
1891
|
-
# executed. For more information about ARNs, see [Amazon
|
1892
|
-
# (ARNs) and
|
1903
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1904
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1905
|
+
# Resource Names (ARNs) and AWS Service
|
1893
1906
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1894
|
-
# *
|
1907
|
+
# *AWS General Reference*.
|
1895
1908
|
#
|
1896
1909
|
# @option params [required, String] :resource_arn
|
1897
1910
|
# The ARN of the resource with the tags to be listed.
|
@@ -1926,11 +1939,11 @@ module Aws::SSOAdmin
|
|
1926
1939
|
# Disassociates a set of tags from a specified resource.
|
1927
1940
|
#
|
1928
1941
|
# @option params [required, String] :instance_arn
|
1929
|
-
# The ARN of the
|
1930
|
-
# executed. For more information about ARNs, see [Amazon
|
1931
|
-
# (ARNs) and
|
1942
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1943
|
+
# will be executed. For more information about ARNs, see [Amazon
|
1944
|
+
# Resource Names (ARNs) and AWS Service
|
1932
1945
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
1933
|
-
# *
|
1946
|
+
# *AWS General Reference*.
|
1934
1947
|
#
|
1935
1948
|
# @option params [required, String] :resource_arn
|
1936
1949
|
# The ARN of the resource with the tags to be listed.
|
@@ -1957,21 +1970,21 @@ module Aws::SSOAdmin
|
|
1957
1970
|
req.send_request(options)
|
1958
1971
|
end
|
1959
1972
|
|
1960
|
-
# Updates the
|
1961
|
-
#
|
1962
|
-
#
|
1973
|
+
# Updates the IAM Identity Center identity store attributes that you can
|
1974
|
+
# use with the IAM Identity Center instance for attributes-based access
|
1975
|
+
# control (ABAC). When using an external identity provider as an
|
1963
1976
|
# identity source, you can pass attributes through the SAML assertion as
|
1964
|
-
# an alternative to configuring attributes from the
|
1965
|
-
#
|
1966
|
-
#
|
1967
|
-
# the
|
1968
|
-
#
|
1969
|
-
# Control](/singlesignon/latest/userguide/abac.html) in the *
|
1970
|
-
#
|
1977
|
+
# an alternative to configuring attributes from the IAM Identity Center
|
1978
|
+
# identity store. If a SAML assertion passes any of these attributes,
|
1979
|
+
# IAM Identity Center replaces the attribute value with the value from
|
1980
|
+
# the IAM Identity Center identity store. For more information about
|
1981
|
+
# ABAC, see [Attribute-Based Access
|
1982
|
+
# Control](/singlesignon/latest/userguide/abac.html) in the *IAM
|
1983
|
+
# Identity Center User Guide*.
|
1971
1984
|
#
|
1972
1985
|
# @option params [required, String] :instance_arn
|
1973
|
-
# The ARN of the
|
1974
|
-
# executed.
|
1986
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
1987
|
+
# will be executed.
|
1975
1988
|
#
|
1976
1989
|
# @option params [required, Types::InstanceAccessControlAttributeConfiguration] :instance_access_control_attribute_configuration
|
1977
1990
|
# Updates the attributes for your ABAC configuration.
|
@@ -2006,11 +2019,11 @@ module Aws::SSOAdmin
|
|
2006
2019
|
# Updates an existing permission set.
|
2007
2020
|
#
|
2008
2021
|
# @option params [required, String] :instance_arn
|
2009
|
-
# The ARN of the
|
2010
|
-
# executed. For more information about ARNs, see [Amazon
|
2011
|
-
# (ARNs) and
|
2022
|
+
# The ARN of the IAM Identity Center instance under which the operation
|
2023
|
+
# will be executed. For more information about ARNs, see [Amazon
|
2024
|
+
# Resource Names (ARNs) and AWS Service
|
2012
2025
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
2013
|
-
# *
|
2026
|
+
# *AWS General Reference*.
|
2014
2027
|
#
|
2015
2028
|
# @option params [required, String] :permission_set_arn
|
2016
2029
|
# The ARN of the permission set.
|
@@ -2060,7 +2073,7 @@ module Aws::SSOAdmin
|
|
2060
2073
|
params: params,
|
2061
2074
|
config: config)
|
2062
2075
|
context[:gem_name] = 'aws-sdk-ssoadmin'
|
2063
|
-
context[:gem_version] = '1.
|
2076
|
+
context[:gem_version] = '1.20.0'
|
2064
2077
|
Seahorse::Client::Request.new(handlers, context)
|
2065
2078
|
end
|
2066
2079
|
|