aws-sdk-ssoadmin 1.17.0 → 1.18.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssoadmin/client.rb +129 -127
- data/lib/aws-sdk-ssoadmin/types.rb +138 -139
- data/lib/aws-sdk-ssoadmin.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 229524ac830c41c9754aab06d3808420bfa7d6f05e60fbac4306e8631a4eb631
|
|
4
|
+
data.tar.gz: ac864ba8aa7f6efc4bb788d4d64b13090744cc1112443c6bafab95ca5ce596aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be34dc69d0c6ebce7f2eda2fdb2c5a1161b13eadd1a78f7e8a9d7182bad23b96b1c2a72b40445c27498f7787032c9a9675dad845a16795e7e275f0742b03bd25
|
|
7
|
+
data.tar.gz: a5335ec287286626ea18d49fb46e927ae0e8e96c8f43091e8162c7486ec51b8bf0513c135bdca5e70a7515014a1417b0f6fddcb6e50097a64a7af730588b97d9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
|
@@ -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 SSO instance under which the
|
|
369
|
-
# executed.
|
|
368
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
369
|
+
# operation 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 Amazon Web
|
|
377
|
+
# Services account where you want to deploy your permission set.
|
|
378
378
|
#
|
|
379
379
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
380
380
|
#
|
|
@@ -398,7 +398,7 @@ module Aws::SSOAdmin
|
|
|
398
398
|
req.send_request(options)
|
|
399
399
|
end
|
|
400
400
|
|
|
401
|
-
# Attaches an Amazon Web Services managed
|
|
401
|
+
# Attaches an Amazon Web Services managed policy ARN to a permission
|
|
402
402
|
# set.
|
|
403
403
|
#
|
|
404
404
|
# <note markdown="1"> If the permission set is already referenced by one or more account
|
|
@@ -409,9 +409,9 @@ module Aws::SSOAdmin
|
|
|
409
409
|
# </note>
|
|
410
410
|
#
|
|
411
411
|
# @option params [required, String] :instance_arn
|
|
412
|
-
# The ARN of the SSO instance under which the
|
|
413
|
-
# executed. For more information about ARNs, see
|
|
414
|
-
# (ARNs) and Amazon Web Services Service
|
|
412
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
413
|
+
# operation will be executed. For more information about ARNs, see
|
|
414
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
415
415
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
416
416
|
# *Amazon Web Services General Reference*.
|
|
417
417
|
#
|
|
@@ -452,18 +452,18 @@ module Aws::SSOAdmin
|
|
|
452
452
|
#
|
|
453
453
|
# <note markdown="1"> As part of a successful `CreateAccountAssignment` call, the specified
|
|
454
454
|
# 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
|
|
458
|
-
# automatically. In this case, you must
|
|
459
|
-
# to make these updates.
|
|
455
|
+
# form of an IAM policy. That policy is attached to the IAM role created
|
|
456
|
+
# in Amazon Web Services SSO. If the permission set is subsequently
|
|
457
|
+
# updated, the corresponding IAM policies attached to roles in your
|
|
458
|
+
# accounts will not be updated automatically. In this case, you must
|
|
459
|
+
# call ` ProvisionPermissionSet ` to make these updates.
|
|
460
460
|
#
|
|
461
461
|
# </note>
|
|
462
462
|
#
|
|
463
463
|
# @option params [required, String] :instance_arn
|
|
464
|
-
# The ARN of the SSO instance under which the
|
|
465
|
-
# executed. For more information about ARNs, see
|
|
466
|
-
# (ARNs) and Amazon Web Services Service
|
|
464
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
465
|
+
# operation will be executed. For more information about ARNs, see
|
|
466
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
467
467
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
468
468
|
# *Amazon Web Services General Reference*.
|
|
469
469
|
#
|
|
@@ -533,8 +533,8 @@ module Aws::SSOAdmin
|
|
|
533
533
|
# Services SSO User Guide*.
|
|
534
534
|
#
|
|
535
535
|
# @option params [required, String] :instance_arn
|
|
536
|
-
# The ARN of the SSO instance under which the
|
|
537
|
-
# executed.
|
|
536
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
537
|
+
# operation will be executed.
|
|
538
538
|
#
|
|
539
539
|
# @option params [required, Types::InstanceAccessControlAttributeConfiguration] :instance_access_control_attribute_configuration
|
|
540
540
|
# Specifies the Amazon Web Services SSO identity store attributes to add
|
|
@@ -573,7 +573,8 @@ module Aws::SSOAdmin
|
|
|
573
573
|
req.send_request(options)
|
|
574
574
|
end
|
|
575
575
|
|
|
576
|
-
# Creates a permission set within a specified SSO
|
|
576
|
+
# Creates a permission set within a specified Amazon Web Services SSO
|
|
577
|
+
# instance.
|
|
577
578
|
#
|
|
578
579
|
# <note markdown="1"> To grant users and groups access to Amazon Web Services account
|
|
579
580
|
# resources, use ` CreateAccountAssignment `.
|
|
@@ -587,9 +588,9 @@ module Aws::SSOAdmin
|
|
|
587
588
|
# The description of the PermissionSet.
|
|
588
589
|
#
|
|
589
590
|
# @option params [required, String] :instance_arn
|
|
590
|
-
# The ARN of the SSO instance under which the
|
|
591
|
-
# executed. For more information about ARNs, see
|
|
592
|
-
# (ARNs) and Amazon Web Services Service
|
|
591
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
592
|
+
# operation will be executed. For more information about ARNs, see
|
|
593
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
593
594
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
594
595
|
# *Amazon Web Services General Reference*.
|
|
595
596
|
#
|
|
@@ -646,9 +647,9 @@ module Aws::SSOAdmin
|
|
|
646
647
|
# account using a specified permission set.
|
|
647
648
|
#
|
|
648
649
|
# @option params [required, String] :instance_arn
|
|
649
|
-
# The ARN of the SSO instance under which the
|
|
650
|
-
# executed. For more information about ARNs, see
|
|
651
|
-
# (ARNs) and Amazon Web Services Service
|
|
650
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
651
|
+
# operation will be executed. For more information about ARNs, see
|
|
652
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
652
653
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
653
654
|
# *Amazon Web Services General Reference*.
|
|
654
655
|
#
|
|
@@ -712,9 +713,9 @@ module Aws::SSOAdmin
|
|
|
712
713
|
# Deletes the inline policy from a specified permission set.
|
|
713
714
|
#
|
|
714
715
|
# @option params [required, String] :instance_arn
|
|
715
|
-
# The ARN of the SSO instance under which the
|
|
716
|
-
# executed. For more information about ARNs, see
|
|
717
|
-
# (ARNs) and Amazon Web Services Service
|
|
716
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
717
|
+
# operation will be executed. For more information about ARNs, see
|
|
718
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
718
719
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
719
720
|
# *Amazon Web Services General Reference*.
|
|
720
721
|
#
|
|
@@ -749,8 +750,8 @@ module Aws::SSOAdmin
|
|
|
749
750
|
# Services SSO User Guide*.
|
|
750
751
|
#
|
|
751
752
|
# @option params [required, String] :instance_arn
|
|
752
|
-
# The ARN of the SSO instance under which the
|
|
753
|
-
# executed.
|
|
753
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
754
|
+
# operation will be executed.
|
|
754
755
|
#
|
|
755
756
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
756
757
|
#
|
|
@@ -772,9 +773,9 @@ module Aws::SSOAdmin
|
|
|
772
773
|
# Deletes the specified permission set.
|
|
773
774
|
#
|
|
774
775
|
# @option params [required, String] :instance_arn
|
|
775
|
-
# The ARN of the SSO instance under which the
|
|
776
|
-
# executed. For more information about ARNs, see
|
|
777
|
-
# (ARNs) and Amazon Web Services Service
|
|
776
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
777
|
+
# operation will be executed. For more information about ARNs, see
|
|
778
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
778
779
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
779
780
|
# *Amazon Web Services General Reference*.
|
|
780
781
|
#
|
|
@@ -802,8 +803,8 @@ module Aws::SSOAdmin
|
|
|
802
803
|
# Deletes the permissions boundary from a specified PermissionSet.
|
|
803
804
|
#
|
|
804
805
|
# @option params [required, String] :instance_arn
|
|
805
|
-
# The ARN of the SSO instance under which the
|
|
806
|
-
# executed.
|
|
806
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
807
|
+
# operation will be executed.
|
|
807
808
|
#
|
|
808
809
|
# @option params [required, String] :permission_set_arn
|
|
809
810
|
# The ARN of the `PermissionSet`.
|
|
@@ -829,9 +830,9 @@ module Aws::SSOAdmin
|
|
|
829
830
|
# Describes the status of the assignment creation request.
|
|
830
831
|
#
|
|
831
832
|
# @option params [required, String] :instance_arn
|
|
832
|
-
# The ARN of the SSO instance under which the
|
|
833
|
-
# executed. For more information about ARNs, see
|
|
834
|
-
# (ARNs) and Amazon Web Services Service
|
|
833
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
834
|
+
# operation will be executed. For more information about ARNs, see
|
|
835
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
835
836
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
836
837
|
# *Amazon Web Services General Reference*.
|
|
837
838
|
#
|
|
@@ -873,9 +874,9 @@ module Aws::SSOAdmin
|
|
|
873
874
|
# Describes the status of the assignment deletion request.
|
|
874
875
|
#
|
|
875
876
|
# @option params [required, String] :instance_arn
|
|
876
|
-
# The ARN of the SSO instance under which the
|
|
877
|
-
# executed. For more information about ARNs, see
|
|
878
|
-
# (ARNs) and Amazon Web Services Service
|
|
877
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
878
|
+
# operation will be executed. For more information about ARNs, see
|
|
879
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
879
880
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
880
881
|
# *Amazon Web Services General Reference*.
|
|
881
882
|
#
|
|
@@ -923,8 +924,8 @@ module Aws::SSOAdmin
|
|
|
923
924
|
# Services SSO User Guide*.
|
|
924
925
|
#
|
|
925
926
|
# @option params [required, String] :instance_arn
|
|
926
|
-
# The ARN of the SSO instance under which the
|
|
927
|
-
# executed.
|
|
927
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
928
|
+
# operation will be executed.
|
|
928
929
|
#
|
|
929
930
|
# @return [Types::DescribeInstanceAccessControlAttributeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
930
931
|
#
|
|
@@ -959,9 +960,9 @@ module Aws::SSOAdmin
|
|
|
959
960
|
# Gets the details of the permission set.
|
|
960
961
|
#
|
|
961
962
|
# @option params [required, String] :instance_arn
|
|
962
|
-
# The ARN of the SSO instance under which the
|
|
963
|
-
# executed. For more information about ARNs, see
|
|
964
|
-
# (ARNs) and Amazon Web Services Service
|
|
963
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
964
|
+
# operation will be executed. For more information about ARNs, see
|
|
965
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
965
966
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
966
967
|
# *Amazon Web Services General Reference*.
|
|
967
968
|
#
|
|
@@ -1001,9 +1002,9 @@ module Aws::SSOAdmin
|
|
|
1001
1002
|
# request.
|
|
1002
1003
|
#
|
|
1003
1004
|
# @option params [required, String] :instance_arn
|
|
1004
|
-
# The ARN of the SSO instance under which the
|
|
1005
|
-
# executed. For more information about ARNs, see
|
|
1006
|
-
# (ARNs) and Amazon Web Services Service
|
|
1005
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1006
|
+
# operation will be executed. For more information about ARNs, see
|
|
1007
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1007
1008
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1008
1009
|
# *Amazon Web Services General Reference*.
|
|
1009
1010
|
#
|
|
@@ -1040,20 +1041,20 @@ module Aws::SSOAdmin
|
|
|
1040
1041
|
req.send_request(options)
|
|
1041
1042
|
end
|
|
1042
1043
|
|
|
1043
|
-
# Detaches the specified
|
|
1044
|
+
# Detaches the specified customer managed policy from the specified
|
|
1044
1045
|
# PermissionSet.
|
|
1045
1046
|
#
|
|
1046
1047
|
# @option params [required, String] :instance_arn
|
|
1047
|
-
# The ARN of the SSO instance under which the
|
|
1048
|
-
# executed.
|
|
1048
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1049
|
+
# operation will be executed.
|
|
1049
1050
|
#
|
|
1050
1051
|
# @option params [required, String] :permission_set_arn
|
|
1051
1052
|
# The ARN of the `PermissionSet`.
|
|
1052
1053
|
#
|
|
1053
1054
|
# @option params [required, Types::CustomerManagedPolicyReference] :customer_managed_policy_reference
|
|
1054
|
-
# Specifies the name and path of
|
|
1055
|
-
#
|
|
1056
|
-
#
|
|
1055
|
+
# Specifies the name and path of a customer managed policy. You must
|
|
1056
|
+
# have an IAM policy that matches the name and path in each Amazon Web
|
|
1057
|
+
# Services account where you want to deploy your permission set.
|
|
1057
1058
|
#
|
|
1058
1059
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1059
1060
|
#
|
|
@@ -1077,13 +1078,13 @@ module Aws::SSOAdmin
|
|
|
1077
1078
|
req.send_request(options)
|
|
1078
1079
|
end
|
|
1079
1080
|
|
|
1080
|
-
# Detaches the attached Amazon Web Services managed
|
|
1081
|
-
#
|
|
1081
|
+
# Detaches the attached Amazon Web Services managed policy ARN from the
|
|
1082
|
+
# specified permission set.
|
|
1082
1083
|
#
|
|
1083
1084
|
# @option params [required, String] :instance_arn
|
|
1084
|
-
# The ARN of the SSO instance under which the
|
|
1085
|
-
# executed. For more information about ARNs, see
|
|
1086
|
-
# (ARNs) and Amazon Web Services Service
|
|
1085
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1086
|
+
# operation will be executed. For more information about ARNs, see
|
|
1087
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1087
1088
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1088
1089
|
# *Amazon Web Services General Reference*.
|
|
1089
1090
|
#
|
|
@@ -1116,9 +1117,9 @@ module Aws::SSOAdmin
|
|
|
1116
1117
|
# Obtains the inline policy assigned to the permission set.
|
|
1117
1118
|
#
|
|
1118
1119
|
# @option params [required, String] :instance_arn
|
|
1119
|
-
# The ARN of the SSO instance under which the
|
|
1120
|
-
# executed. For more information about ARNs, see
|
|
1121
|
-
# (ARNs) and Amazon Web Services Service
|
|
1120
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1121
|
+
# operation will be executed. For more information about ARNs, see
|
|
1122
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1122
1123
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1123
1124
|
# *Amazon Web Services General Reference*.
|
|
1124
1125
|
#
|
|
@@ -1152,8 +1153,8 @@ module Aws::SSOAdmin
|
|
|
1152
1153
|
# Obtains the permissions boundary for a specified PermissionSet.
|
|
1153
1154
|
#
|
|
1154
1155
|
# @option params [required, String] :instance_arn
|
|
1155
|
-
# The ARN of the SSO instance under which the
|
|
1156
|
-
# executed.
|
|
1156
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1157
|
+
# operation will be executed.
|
|
1157
1158
|
#
|
|
1158
1159
|
# @option params [required, String] :permission_set_arn
|
|
1159
1160
|
# The ARN of the `PermissionSet`.
|
|
@@ -1185,12 +1186,12 @@ module Aws::SSOAdmin
|
|
|
1185
1186
|
end
|
|
1186
1187
|
|
|
1187
1188
|
# Lists the status of the Amazon Web Services account assignment
|
|
1188
|
-
# creation requests for a specified SSO instance.
|
|
1189
|
+
# creation requests for a specified Amazon Web Services SSO instance.
|
|
1189
1190
|
#
|
|
1190
1191
|
# @option params [required, String] :instance_arn
|
|
1191
|
-
# The ARN of the SSO instance under which the
|
|
1192
|
-
# executed. For more information about ARNs, see
|
|
1193
|
-
# (ARNs) and Amazon Web Services Service
|
|
1192
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1193
|
+
# operation will be executed. For more information about ARNs, see
|
|
1194
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1194
1195
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1195
1196
|
# *Amazon Web Services General Reference*.
|
|
1196
1197
|
#
|
|
@@ -1240,12 +1241,12 @@ module Aws::SSOAdmin
|
|
|
1240
1241
|
end
|
|
1241
1242
|
|
|
1242
1243
|
# Lists the status of the Amazon Web Services account assignment
|
|
1243
|
-
# deletion requests for a specified SSO instance.
|
|
1244
|
+
# deletion requests for a specified Amazon Web Services SSO instance.
|
|
1244
1245
|
#
|
|
1245
1246
|
# @option params [required, String] :instance_arn
|
|
1246
|
-
# The ARN of the SSO instance under which the
|
|
1247
|
-
# executed. For more information about ARNs, see
|
|
1248
|
-
# (ARNs) and Amazon Web Services Service
|
|
1247
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1248
|
+
# operation will be executed. For more information about ARNs, see
|
|
1249
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1249
1250
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1250
1251
|
# *Amazon Web Services General Reference*.
|
|
1251
1252
|
#
|
|
@@ -1298,9 +1299,9 @@ module Aws::SSOAdmin
|
|
|
1298
1299
|
# the specified permission set.
|
|
1299
1300
|
#
|
|
1300
1301
|
# @option params [required, String] :instance_arn
|
|
1301
|
-
# The ARN of the SSO instance under which the
|
|
1302
|
-
# executed. For more information about ARNs, see
|
|
1303
|
-
# (ARNs) and Amazon Web Services Service
|
|
1302
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1303
|
+
# operation will be executed. For more information about ARNs, see
|
|
1304
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1304
1305
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1305
1306
|
# *Amazon Web Services General Reference*.
|
|
1306
1307
|
#
|
|
@@ -1357,9 +1358,9 @@ module Aws::SSOAdmin
|
|
|
1357
1358
|
# permission set is provisioned.
|
|
1358
1359
|
#
|
|
1359
1360
|
# @option params [required, String] :instance_arn
|
|
1360
|
-
# The ARN of the SSO instance under which the
|
|
1361
|
-
# executed. For more information about ARNs, see
|
|
1362
|
-
# (ARNs) and Amazon Web Services Service
|
|
1361
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1362
|
+
# operation will be executed. For more information about ARNs, see
|
|
1363
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1363
1364
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1364
1365
|
# *Amazon Web Services General Reference*.
|
|
1365
1366
|
#
|
|
@@ -1410,12 +1411,12 @@ module Aws::SSOAdmin
|
|
|
1410
1411
|
req.send_request(options)
|
|
1411
1412
|
end
|
|
1412
1413
|
|
|
1413
|
-
# Lists all
|
|
1414
|
+
# Lists all customer managed policies attached to a specified
|
|
1414
1415
|
# PermissionSet.
|
|
1415
1416
|
#
|
|
1416
1417
|
# @option params [required, String] :instance_arn
|
|
1417
|
-
# The ARN of the SSO instance under which the
|
|
1418
|
-
# executed.
|
|
1418
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1419
|
+
# operation will be executed.
|
|
1419
1420
|
#
|
|
1420
1421
|
# @option params [required, String] :permission_set_arn
|
|
1421
1422
|
# The ARN of the `PermissionSet`.
|
|
@@ -1459,7 +1460,8 @@ module Aws::SSOAdmin
|
|
|
1459
1460
|
req.send_request(options)
|
|
1460
1461
|
end
|
|
1461
1462
|
|
|
1462
|
-
# Lists the SSO instances that the caller has access
|
|
1463
|
+
# Lists the Amazon Web Services SSO instances that the caller has access
|
|
1464
|
+
# to.
|
|
1463
1465
|
#
|
|
1464
1466
|
# @option params [Integer] :max_results
|
|
1465
1467
|
# The maximum number of results to display for the instance.
|
|
@@ -1498,13 +1500,13 @@ module Aws::SSOAdmin
|
|
|
1498
1500
|
req.send_request(options)
|
|
1499
1501
|
end
|
|
1500
1502
|
|
|
1501
|
-
# Lists the Amazon Web Services managed
|
|
1503
|
+
# Lists the Amazon Web Services managed policy that is attached to a
|
|
1502
1504
|
# specified permission set.
|
|
1503
1505
|
#
|
|
1504
1506
|
# @option params [required, String] :instance_arn
|
|
1505
|
-
# The ARN of the SSO instance under which the
|
|
1506
|
-
# executed. For more information about ARNs, see
|
|
1507
|
-
# (ARNs) and Amazon Web Services Service
|
|
1507
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1508
|
+
# operation will be executed. For more information about ARNs, see
|
|
1509
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1508
1510
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1509
1511
|
# *Amazon Web Services General Reference*.
|
|
1510
1512
|
#
|
|
@@ -1551,12 +1553,12 @@ module Aws::SSOAdmin
|
|
|
1551
1553
|
end
|
|
1552
1554
|
|
|
1553
1555
|
# Lists the status of the permission set provisioning requests for a
|
|
1554
|
-
# specified SSO instance.
|
|
1556
|
+
# specified Amazon Web Services SSO instance.
|
|
1555
1557
|
#
|
|
1556
1558
|
# @option params [required, String] :instance_arn
|
|
1557
|
-
# The ARN of the SSO instance under which the
|
|
1558
|
-
# executed. For more information about ARNs, see
|
|
1559
|
-
# (ARNs) and Amazon Web Services Service
|
|
1559
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1560
|
+
# operation will be executed. For more information about ARNs, see
|
|
1561
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1560
1562
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1561
1563
|
# *Amazon Web Services General Reference*.
|
|
1562
1564
|
#
|
|
@@ -1605,12 +1607,12 @@ module Aws::SSOAdmin
|
|
|
1605
1607
|
req.send_request(options)
|
|
1606
1608
|
end
|
|
1607
1609
|
|
|
1608
|
-
# Lists the PermissionSets in an SSO instance.
|
|
1610
|
+
# Lists the PermissionSets in an Amazon Web Services SSO instance.
|
|
1609
1611
|
#
|
|
1610
1612
|
# @option params [required, String] :instance_arn
|
|
1611
|
-
# The ARN of the SSO instance under which the
|
|
1612
|
-
# executed. For more information about ARNs, see
|
|
1613
|
-
# (ARNs) and Amazon Web Services Service
|
|
1613
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1614
|
+
# operation will be executed. For more information about ARNs, see
|
|
1615
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1614
1616
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1615
1617
|
# *Amazon Web Services General Reference*.
|
|
1616
1618
|
#
|
|
@@ -1655,9 +1657,9 @@ module Aws::SSOAdmin
|
|
|
1655
1657
|
# Amazon Web Services account.
|
|
1656
1658
|
#
|
|
1657
1659
|
# @option params [required, String] :instance_arn
|
|
1658
|
-
# The ARN of the SSO instance under which the
|
|
1659
|
-
# executed. For more information about ARNs, see
|
|
1660
|
-
# (ARNs) and Amazon Web Services Service
|
|
1660
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1661
|
+
# operation will be executed. For more information about ARNs, see
|
|
1662
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1661
1663
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1662
1664
|
# *Amazon Web Services General Reference*.
|
|
1663
1665
|
#
|
|
@@ -1710,9 +1712,9 @@ module Aws::SSOAdmin
|
|
|
1710
1712
|
# Lists the tags that are attached to a specified resource.
|
|
1711
1713
|
#
|
|
1712
1714
|
# @option params [required, String] :instance_arn
|
|
1713
|
-
# The ARN of the SSO instance under which the
|
|
1714
|
-
# executed. For more information about ARNs, see
|
|
1715
|
-
# (ARNs) and Amazon Web Services Service
|
|
1715
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1716
|
+
# operation will be executed. For more information about ARNs, see
|
|
1717
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1716
1718
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1717
1719
|
# *Amazon Web Services General Reference*.
|
|
1718
1720
|
#
|
|
@@ -1758,9 +1760,9 @@ module Aws::SSOAdmin
|
|
|
1758
1760
|
# specified target.
|
|
1759
1761
|
#
|
|
1760
1762
|
# @option params [required, String] :instance_arn
|
|
1761
|
-
# The ARN of the SSO instance under which the
|
|
1762
|
-
# executed. For more information about ARNs, see
|
|
1763
|
-
# (ARNs) and Amazon Web Services Service
|
|
1763
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1764
|
+
# operation will be executed. For more information about ARNs, see
|
|
1765
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1764
1766
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1765
1767
|
# *Amazon Web Services General Reference*.
|
|
1766
1768
|
#
|
|
@@ -1805,7 +1807,7 @@ module Aws::SSOAdmin
|
|
|
1805
1807
|
req.send_request(options)
|
|
1806
1808
|
end
|
|
1807
1809
|
|
|
1808
|
-
# Attaches an
|
|
1810
|
+
# Attaches an inline policy to a permission set.
|
|
1809
1811
|
#
|
|
1810
1812
|
# <note markdown="1"> If the permission set is already referenced by one or more account
|
|
1811
1813
|
# assignments, you will need to call ` ProvisionPermissionSet ` after
|
|
@@ -1815,9 +1817,9 @@ module Aws::SSOAdmin
|
|
|
1815
1817
|
# </note>
|
|
1816
1818
|
#
|
|
1817
1819
|
# @option params [required, String] :instance_arn
|
|
1818
|
-
# The ARN of the SSO instance under which the
|
|
1819
|
-
# executed. For more information about ARNs, see
|
|
1820
|
-
# (ARNs) and Amazon Web Services Service
|
|
1820
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1821
|
+
# operation will be executed. For more information about ARNs, see
|
|
1822
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1821
1823
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1822
1824
|
# *Amazon Web Services General Reference*.
|
|
1823
1825
|
#
|
|
@@ -1825,7 +1827,7 @@ module Aws::SSOAdmin
|
|
|
1825
1827
|
# The ARN of the permission set.
|
|
1826
1828
|
#
|
|
1827
1829
|
# @option params [required, String] :inline_policy
|
|
1828
|
-
# The
|
|
1830
|
+
# The inline policy to attach to a PermissionSet.
|
|
1829
1831
|
#
|
|
1830
1832
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1831
1833
|
#
|
|
@@ -1846,12 +1848,12 @@ module Aws::SSOAdmin
|
|
|
1846
1848
|
req.send_request(options)
|
|
1847
1849
|
end
|
|
1848
1850
|
|
|
1849
|
-
# Attaches an Amazon Web Services managed or customer managed
|
|
1850
|
-
#
|
|
1851
|
+
# Attaches an Amazon Web Services managed or customer managed policy to
|
|
1852
|
+
# the specified PermissionSet as a permissions boundary.
|
|
1851
1853
|
#
|
|
1852
1854
|
# @option params [required, String] :instance_arn
|
|
1853
|
-
# The ARN of the SSO instance under which the
|
|
1854
|
-
# executed.
|
|
1855
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1856
|
+
# operation will be executed.
|
|
1855
1857
|
#
|
|
1856
1858
|
# @option params [required, String] :permission_set_arn
|
|
1857
1859
|
# The ARN of the `PermissionSet`.
|
|
@@ -1887,9 +1889,9 @@ module Aws::SSOAdmin
|
|
|
1887
1889
|
# Associates a set of tags with a specified resource.
|
|
1888
1890
|
#
|
|
1889
1891
|
# @option params [required, String] :instance_arn
|
|
1890
|
-
# The ARN of the SSO instance under which the
|
|
1891
|
-
# executed. For more information about ARNs, see
|
|
1892
|
-
# (ARNs) and Amazon Web Services Service
|
|
1892
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1893
|
+
# operation will be executed. For more information about ARNs, see
|
|
1894
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1893
1895
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1894
1896
|
# *Amazon Web Services General Reference*.
|
|
1895
1897
|
#
|
|
@@ -1926,9 +1928,9 @@ module Aws::SSOAdmin
|
|
|
1926
1928
|
# Disassociates a set of tags from a specified resource.
|
|
1927
1929
|
#
|
|
1928
1930
|
# @option params [required, String] :instance_arn
|
|
1929
|
-
# The ARN of the SSO instance under which the
|
|
1930
|
-
# executed. For more information about ARNs, see
|
|
1931
|
-
# (ARNs) and Amazon Web Services Service
|
|
1931
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1932
|
+
# operation will be executed. For more information about ARNs, see
|
|
1933
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1932
1934
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1933
1935
|
# *Amazon Web Services General Reference*.
|
|
1934
1936
|
#
|
|
@@ -1970,8 +1972,8 @@ module Aws::SSOAdmin
|
|
|
1970
1972
|
# Services SSO User Guide*.
|
|
1971
1973
|
#
|
|
1972
1974
|
# @option params [required, String] :instance_arn
|
|
1973
|
-
# The ARN of the SSO instance under which the
|
|
1974
|
-
# executed.
|
|
1975
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1976
|
+
# operation will be executed.
|
|
1975
1977
|
#
|
|
1976
1978
|
# @option params [required, Types::InstanceAccessControlAttributeConfiguration] :instance_access_control_attribute_configuration
|
|
1977
1979
|
# Updates the attributes for your ABAC configuration.
|
|
@@ -2006,9 +2008,9 @@ module Aws::SSOAdmin
|
|
|
2006
2008
|
# Updates an existing permission set.
|
|
2007
2009
|
#
|
|
2008
2010
|
# @option params [required, String] :instance_arn
|
|
2009
|
-
# The ARN of the SSO instance under which the
|
|
2010
|
-
# executed. For more information about ARNs, see
|
|
2011
|
-
# (ARNs) and Amazon Web Services Service
|
|
2011
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2012
|
+
# operation will be executed. For more information about ARNs, see
|
|
2013
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2012
2014
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2013
2015
|
# *Amazon Web Services General Reference*.
|
|
2014
2016
|
#
|
|
@@ -2060,7 +2062,7 @@ module Aws::SSOAdmin
|
|
|
2060
2062
|
params: params,
|
|
2061
2063
|
config: config)
|
|
2062
2064
|
context[:gem_name] = 'aws-sdk-ssoadmin'
|
|
2063
|
-
context[:gem_version] = '1.
|
|
2065
|
+
context[:gem_version] = '1.18.0'
|
|
2064
2066
|
Seahorse::Client::Request.new(handlers, context)
|
|
2065
2067
|
end
|
|
2066
2068
|
|
|
@@ -50,7 +50,7 @@ module Aws::SSOAdmin
|
|
|
50
50
|
|
|
51
51
|
# The value used for mapping a specified attribute to an identity
|
|
52
52
|
# source. For more information, see [Attribute mappings][1] in the
|
|
53
|
-
# Amazon Web Services
|
|
53
|
+
# *Amazon Web Services SSO User Guide*.
|
|
54
54
|
#
|
|
55
55
|
#
|
|
56
56
|
#
|
|
@@ -236,8 +236,8 @@ module Aws::SSOAdmin
|
|
|
236
236
|
# }
|
|
237
237
|
#
|
|
238
238
|
# @!attribute [rw] instance_arn
|
|
239
|
-
# The ARN of the SSO instance under which the
|
|
240
|
-
# executed.
|
|
239
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
240
|
+
# operation will be executed.
|
|
241
241
|
# @return [String]
|
|
242
242
|
#
|
|
243
243
|
# @!attribute [rw] permission_set_arn
|
|
@@ -245,10 +245,9 @@ module Aws::SSOAdmin
|
|
|
245
245
|
# @return [String]
|
|
246
246
|
#
|
|
247
247
|
# @!attribute [rw] customer_managed_policy_reference
|
|
248
|
-
# Specifies the name and path of
|
|
249
|
-
#
|
|
250
|
-
#
|
|
251
|
-
# set.
|
|
248
|
+
# Specifies the name and path of a customer managed policy. You must
|
|
249
|
+
# have an IAM policy that matches the name and path in each Amazon Web
|
|
250
|
+
# Services account where you want to deploy your permission set.
|
|
252
251
|
# @return [Types::CustomerManagedPolicyReference]
|
|
253
252
|
#
|
|
254
253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/AttachCustomerManagedPolicyReferenceToPermissionSetRequest AWS API Documentation
|
|
@@ -275,9 +274,9 @@ module Aws::SSOAdmin
|
|
|
275
274
|
# }
|
|
276
275
|
#
|
|
277
276
|
# @!attribute [rw] instance_arn
|
|
278
|
-
# The ARN of the SSO instance under which the
|
|
279
|
-
# executed. For more information about ARNs, see
|
|
280
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
277
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
278
|
+
# operation will be executed. For more information about ARNs, see
|
|
279
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
281
280
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
282
281
|
# *Amazon Web Services General Reference*.
|
|
283
282
|
# @return [String]
|
|
@@ -307,14 +306,14 @@ module Aws::SSOAdmin
|
|
|
307
306
|
class AttachManagedPolicyToPermissionSetResponse < Aws::EmptyStructure; end
|
|
308
307
|
|
|
309
308
|
# A structure that stores the details of the Amazon Web Services managed
|
|
310
|
-
#
|
|
309
|
+
# policy.
|
|
311
310
|
#
|
|
312
311
|
# @!attribute [rw] name
|
|
313
|
-
# The name of the Amazon Web Services managed
|
|
312
|
+
# The name of the Amazon Web Services managed policy.
|
|
314
313
|
# @return [String]
|
|
315
314
|
#
|
|
316
315
|
# @!attribute [rw] arn
|
|
317
|
-
# The ARN of the Amazon Web Services managed
|
|
316
|
+
# The ARN of the Amazon Web Services managed policy. For more
|
|
318
317
|
# information about ARNs, see [Amazon Resource Names (ARNs) and Amazon
|
|
319
318
|
# Web Services Service
|
|
320
319
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
@@ -360,9 +359,9 @@ module Aws::SSOAdmin
|
|
|
360
359
|
# }
|
|
361
360
|
#
|
|
362
361
|
# @!attribute [rw] instance_arn
|
|
363
|
-
# The ARN of the SSO instance under which the
|
|
364
|
-
# executed. For more information about ARNs, see
|
|
365
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
362
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
363
|
+
# operation will be executed. For more information about ARNs, see
|
|
364
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
366
365
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
367
366
|
# *Amazon Web Services General Reference*.
|
|
368
367
|
# @return [String]
|
|
@@ -437,8 +436,8 @@ module Aws::SSOAdmin
|
|
|
437
436
|
# }
|
|
438
437
|
#
|
|
439
438
|
# @!attribute [rw] instance_arn
|
|
440
|
-
# The ARN of the SSO instance under which the
|
|
441
|
-
# executed.
|
|
439
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
440
|
+
# operation will be executed.
|
|
442
441
|
# @return [String]
|
|
443
442
|
#
|
|
444
443
|
# @!attribute [rw] instance_access_control_attribute_configuration
|
|
@@ -491,9 +490,9 @@ module Aws::SSOAdmin
|
|
|
491
490
|
# @return [String]
|
|
492
491
|
#
|
|
493
492
|
# @!attribute [rw] instance_arn
|
|
494
|
-
# The ARN of the SSO instance under which the
|
|
495
|
-
# executed. For more information about ARNs, see
|
|
496
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
493
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
494
|
+
# operation will be executed. For more information about ARNs, see
|
|
495
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
497
496
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
498
497
|
# *Amazon Web Services General Reference*.
|
|
499
498
|
# @return [String]
|
|
@@ -537,9 +536,9 @@ module Aws::SSOAdmin
|
|
|
537
536
|
include Aws::Structure
|
|
538
537
|
end
|
|
539
538
|
|
|
540
|
-
# Specifies the name and path of
|
|
541
|
-
#
|
|
542
|
-
#
|
|
539
|
+
# Specifies the name and path of a customer managed policy. You must
|
|
540
|
+
# have an IAM policy that matches the name and path in each Amazon Web
|
|
541
|
+
# Services account where you want to deploy your permission set.
|
|
543
542
|
#
|
|
544
543
|
# @note When making an API call, you may pass CustomerManagedPolicyReference
|
|
545
544
|
# data as a hash:
|
|
@@ -550,13 +549,15 @@ module Aws::SSOAdmin
|
|
|
550
549
|
# }
|
|
551
550
|
#
|
|
552
551
|
# @!attribute [rw] name
|
|
553
|
-
# The name of the policy
|
|
552
|
+
# The name of the IAM policy that you have configured in each account
|
|
553
|
+
# where you want to deploy your permission set.
|
|
554
554
|
# @return [String]
|
|
555
555
|
#
|
|
556
556
|
# @!attribute [rw] path
|
|
557
|
-
# The path
|
|
558
|
-
#
|
|
559
|
-
#
|
|
557
|
+
# The path to the IAM policy that you have configured in each account
|
|
558
|
+
# where you want to deploy your permission set. The default is `/`.
|
|
559
|
+
# For more information, see [Friendly names and paths][1] in the
|
|
560
|
+
# *Identity and Access Management User Guide*.
|
|
560
561
|
#
|
|
561
562
|
#
|
|
562
563
|
#
|
|
@@ -585,9 +586,9 @@ module Aws::SSOAdmin
|
|
|
585
586
|
# }
|
|
586
587
|
#
|
|
587
588
|
# @!attribute [rw] instance_arn
|
|
588
|
-
# The ARN of the SSO instance under which the
|
|
589
|
-
# executed. For more information about ARNs, see
|
|
590
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
589
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
590
|
+
# operation will be executed. For more information about ARNs, see
|
|
591
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
591
592
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
592
593
|
# *Amazon Web Services General Reference*.
|
|
593
594
|
# @return [String]
|
|
@@ -652,9 +653,9 @@ module Aws::SSOAdmin
|
|
|
652
653
|
# }
|
|
653
654
|
#
|
|
654
655
|
# @!attribute [rw] instance_arn
|
|
655
|
-
# The ARN of the SSO instance under which the
|
|
656
|
-
# executed. For more information about ARNs, see
|
|
657
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
656
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
657
|
+
# operation will be executed. For more information about ARNs, see
|
|
658
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
658
659
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
659
660
|
# *Amazon Web Services General Reference*.
|
|
660
661
|
# @return [String]
|
|
@@ -684,8 +685,8 @@ module Aws::SSOAdmin
|
|
|
684
685
|
# }
|
|
685
686
|
#
|
|
686
687
|
# @!attribute [rw] instance_arn
|
|
687
|
-
# The ARN of the SSO instance under which the
|
|
688
|
-
# executed.
|
|
688
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
689
|
+
# operation will be executed.
|
|
689
690
|
# @return [String]
|
|
690
691
|
#
|
|
691
692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/DeleteInstanceAccessControlAttributeConfigurationRequest AWS API Documentation
|
|
@@ -709,9 +710,9 @@ module Aws::SSOAdmin
|
|
|
709
710
|
# }
|
|
710
711
|
#
|
|
711
712
|
# @!attribute [rw] instance_arn
|
|
712
|
-
# The ARN of the SSO instance under which the
|
|
713
|
-
# executed. For more information about ARNs, see
|
|
714
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
713
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
714
|
+
# operation will be executed. For more information about ARNs, see
|
|
715
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
715
716
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
716
717
|
# *Amazon Web Services General Reference*.
|
|
717
718
|
# @return [String]
|
|
@@ -742,8 +743,8 @@ module Aws::SSOAdmin
|
|
|
742
743
|
# }
|
|
743
744
|
#
|
|
744
745
|
# @!attribute [rw] instance_arn
|
|
745
|
-
# The ARN of the SSO instance under which the
|
|
746
|
-
# executed.
|
|
746
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
747
|
+
# operation will be executed.
|
|
747
748
|
# @return [String]
|
|
748
749
|
#
|
|
749
750
|
# @!attribute [rw] permission_set_arn
|
|
@@ -772,9 +773,9 @@ module Aws::SSOAdmin
|
|
|
772
773
|
# }
|
|
773
774
|
#
|
|
774
775
|
# @!attribute [rw] instance_arn
|
|
775
|
-
# The ARN of the SSO instance under which the
|
|
776
|
-
# executed. For more information about ARNs, see
|
|
777
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
776
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
777
|
+
# operation will be executed. For more information about ARNs, see
|
|
778
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
778
779
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
779
780
|
# *Amazon Web Services General Reference*.
|
|
780
781
|
# @return [String]
|
|
@@ -813,9 +814,9 @@ module Aws::SSOAdmin
|
|
|
813
814
|
# }
|
|
814
815
|
#
|
|
815
816
|
# @!attribute [rw] instance_arn
|
|
816
|
-
# The ARN of the SSO instance under which the
|
|
817
|
-
# executed. For more information about ARNs, see
|
|
818
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
817
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
818
|
+
# operation will be executed. For more information about ARNs, see
|
|
819
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
819
820
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
820
821
|
# *Amazon Web Services General Reference*.
|
|
821
822
|
# @return [String]
|
|
@@ -853,8 +854,8 @@ module Aws::SSOAdmin
|
|
|
853
854
|
# }
|
|
854
855
|
#
|
|
855
856
|
# @!attribute [rw] instance_arn
|
|
856
|
-
# The ARN of the SSO instance under which the
|
|
857
|
-
# executed.
|
|
857
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
858
|
+
# operation will be executed.
|
|
858
859
|
# @return [String]
|
|
859
860
|
#
|
|
860
861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/DescribeInstanceAccessControlAttributeConfigurationRequest AWS API Documentation
|
|
@@ -898,9 +899,9 @@ module Aws::SSOAdmin
|
|
|
898
899
|
# }
|
|
899
900
|
#
|
|
900
901
|
# @!attribute [rw] instance_arn
|
|
901
|
-
# The ARN of the SSO instance under which the
|
|
902
|
-
# executed. For more information about ARNs, see
|
|
903
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
902
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
903
|
+
# operation will be executed. For more information about ARNs, see
|
|
904
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
904
905
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
905
906
|
# *Amazon Web Services General Reference*.
|
|
906
907
|
# @return [String]
|
|
@@ -940,9 +941,9 @@ module Aws::SSOAdmin
|
|
|
940
941
|
# }
|
|
941
942
|
#
|
|
942
943
|
# @!attribute [rw] instance_arn
|
|
943
|
-
# The ARN of the SSO instance under which the
|
|
944
|
-
# executed. For more information about ARNs, see
|
|
945
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
944
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
945
|
+
# operation will be executed. For more information about ARNs, see
|
|
946
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
946
947
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
947
948
|
# *Amazon Web Services General Reference*.
|
|
948
949
|
# @return [String]
|
|
@@ -985,8 +986,8 @@ module Aws::SSOAdmin
|
|
|
985
986
|
# }
|
|
986
987
|
#
|
|
987
988
|
# @!attribute [rw] instance_arn
|
|
988
|
-
# The ARN of the SSO instance under which the
|
|
989
|
-
# executed.
|
|
989
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
990
|
+
# operation will be executed.
|
|
990
991
|
# @return [String]
|
|
991
992
|
#
|
|
992
993
|
# @!attribute [rw] permission_set_arn
|
|
@@ -994,10 +995,9 @@ module Aws::SSOAdmin
|
|
|
994
995
|
# @return [String]
|
|
995
996
|
#
|
|
996
997
|
# @!attribute [rw] customer_managed_policy_reference
|
|
997
|
-
# Specifies the name and path of
|
|
998
|
-
#
|
|
999
|
-
#
|
|
1000
|
-
# set.
|
|
998
|
+
# Specifies the name and path of a customer managed policy. You must
|
|
999
|
+
# have an IAM policy that matches the name and path in each Amazon Web
|
|
1000
|
+
# Services account where you want to deploy your permission set.
|
|
1001
1001
|
# @return [Types::CustomerManagedPolicyReference]
|
|
1002
1002
|
#
|
|
1003
1003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/DetachCustomerManagedPolicyReferenceFromPermissionSetRequest AWS API Documentation
|
|
@@ -1024,9 +1024,9 @@ module Aws::SSOAdmin
|
|
|
1024
1024
|
# }
|
|
1025
1025
|
#
|
|
1026
1026
|
# @!attribute [rw] instance_arn
|
|
1027
|
-
# The ARN of the SSO instance under which the
|
|
1028
|
-
# executed. For more information about ARNs, see
|
|
1029
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1027
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1028
|
+
# operation will be executed. For more information about ARNs, see
|
|
1029
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1030
1030
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1031
1031
|
# *Amazon Web Services General Reference*.
|
|
1032
1032
|
# @return [String]
|
|
@@ -1064,9 +1064,9 @@ module Aws::SSOAdmin
|
|
|
1064
1064
|
# }
|
|
1065
1065
|
#
|
|
1066
1066
|
# @!attribute [rw] instance_arn
|
|
1067
|
-
# The ARN of the SSO instance under which the
|
|
1068
|
-
# executed. For more information about ARNs, see
|
|
1069
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1067
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1068
|
+
# operation will be executed. For more information about ARNs, see
|
|
1069
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1070
1070
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1071
1071
|
# *Amazon Web Services General Reference*.
|
|
1072
1072
|
# @return [String]
|
|
@@ -1085,7 +1085,7 @@ module Aws::SSOAdmin
|
|
|
1085
1085
|
end
|
|
1086
1086
|
|
|
1087
1087
|
# @!attribute [rw] inline_policy
|
|
1088
|
-
# The
|
|
1088
|
+
# The inline policy that is attached to the permission set.
|
|
1089
1089
|
# @return [String]
|
|
1090
1090
|
#
|
|
1091
1091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/GetInlinePolicyForPermissionSetResponse AWS API Documentation
|
|
@@ -1105,8 +1105,8 @@ module Aws::SSOAdmin
|
|
|
1105
1105
|
# }
|
|
1106
1106
|
#
|
|
1107
1107
|
# @!attribute [rw] instance_arn
|
|
1108
|
-
# The ARN of the SSO instance under which the
|
|
1109
|
-
# executed.
|
|
1108
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1109
|
+
# operation will be executed.
|
|
1110
1110
|
# @return [String]
|
|
1111
1111
|
#
|
|
1112
1112
|
# @!attribute [rw] permission_set_arn
|
|
@@ -1164,19 +1164,19 @@ module Aws::SSOAdmin
|
|
|
1164
1164
|
include Aws::Structure
|
|
1165
1165
|
end
|
|
1166
1166
|
|
|
1167
|
-
# Provides information about the SSO instance.
|
|
1167
|
+
# Provides information about the Amazon Web Services SSO instance.
|
|
1168
1168
|
#
|
|
1169
1169
|
# @!attribute [rw] instance_arn
|
|
1170
|
-
# The ARN of the SSO instance under which the
|
|
1171
|
-
# executed. For more information about ARNs, see
|
|
1172
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1170
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1171
|
+
# operation will be executed. For more information about ARNs, see
|
|
1172
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1173
1173
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1174
1174
|
# *Amazon Web Services General Reference*.
|
|
1175
1175
|
# @return [String]
|
|
1176
1176
|
#
|
|
1177
1177
|
# @!attribute [rw] identity_store_id
|
|
1178
|
-
# The identifier of the identity store that is connected to the
|
|
1179
|
-
# instance.
|
|
1178
|
+
# The identifier of the identity store that is connected to the Amazon
|
|
1179
|
+
# Web Services SSO instance.
|
|
1180
1180
|
# @return [String]
|
|
1181
1181
|
#
|
|
1182
1182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/InstanceMetadata AWS API Documentation
|
|
@@ -1215,9 +1215,9 @@ module Aws::SSOAdmin
|
|
|
1215
1215
|
# }
|
|
1216
1216
|
#
|
|
1217
1217
|
# @!attribute [rw] instance_arn
|
|
1218
|
-
# The ARN of the SSO instance under which the
|
|
1219
|
-
# executed. For more information about ARNs, see
|
|
1220
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1218
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1219
|
+
# operation will be executed. For more information about ARNs, see
|
|
1220
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1221
1221
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1222
1222
|
# *Amazon Web Services General Reference*.
|
|
1223
1223
|
# @return [String]
|
|
@@ -1277,9 +1277,9 @@ module Aws::SSOAdmin
|
|
|
1277
1277
|
# }
|
|
1278
1278
|
#
|
|
1279
1279
|
# @!attribute [rw] instance_arn
|
|
1280
|
-
# The ARN of the SSO instance under which the
|
|
1281
|
-
# executed. For more information about ARNs, see
|
|
1282
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1280
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1281
|
+
# operation will be executed. For more information about ARNs, see
|
|
1282
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1283
1283
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1284
1284
|
# *Amazon Web Services General Reference*.
|
|
1285
1285
|
# @return [String]
|
|
@@ -1338,9 +1338,9 @@ module Aws::SSOAdmin
|
|
|
1338
1338
|
# }
|
|
1339
1339
|
#
|
|
1340
1340
|
# @!attribute [rw] instance_arn
|
|
1341
|
-
# The ARN of the SSO instance under which the
|
|
1342
|
-
# executed. For more information about ARNs, see
|
|
1343
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1341
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1342
|
+
# operation will be executed. For more information about ARNs, see
|
|
1343
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1344
1344
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1345
1345
|
# *Amazon Web Services General Reference*.
|
|
1346
1346
|
# @return [String]
|
|
@@ -1406,9 +1406,9 @@ module Aws::SSOAdmin
|
|
|
1406
1406
|
# }
|
|
1407
1407
|
#
|
|
1408
1408
|
# @!attribute [rw] instance_arn
|
|
1409
|
-
# The ARN of the SSO instance under which the
|
|
1410
|
-
# executed. For more information about ARNs, see
|
|
1411
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1409
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1410
|
+
# operation will be executed. For more information about ARNs, see
|
|
1411
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1412
1412
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1413
1413
|
# *Amazon Web Services General Reference*.
|
|
1414
1414
|
# @return [String]
|
|
@@ -1473,8 +1473,8 @@ module Aws::SSOAdmin
|
|
|
1473
1473
|
# }
|
|
1474
1474
|
#
|
|
1475
1475
|
# @!attribute [rw] instance_arn
|
|
1476
|
-
# The ARN of the SSO instance under which the
|
|
1477
|
-
# executed.
|
|
1476
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1477
|
+
# operation will be executed.
|
|
1478
1478
|
# @return [String]
|
|
1479
1479
|
#
|
|
1480
1480
|
# @!attribute [rw] permission_set_arn
|
|
@@ -1502,8 +1502,8 @@ module Aws::SSOAdmin
|
|
|
1502
1502
|
end
|
|
1503
1503
|
|
|
1504
1504
|
# @!attribute [rw] customer_managed_policy_references
|
|
1505
|
-
# Specifies the names and paths of the
|
|
1506
|
-
#
|
|
1505
|
+
# Specifies the names and paths of the customer managed policies that
|
|
1506
|
+
# you have attached to your permission set.
|
|
1507
1507
|
# @return [Array<Types::CustomerManagedPolicyReference>]
|
|
1508
1508
|
#
|
|
1509
1509
|
# @!attribute [rw] next_token
|
|
@@ -1547,7 +1547,8 @@ module Aws::SSOAdmin
|
|
|
1547
1547
|
end
|
|
1548
1548
|
|
|
1549
1549
|
# @!attribute [rw] instances
|
|
1550
|
-
# Lists the SSO instances that the caller has
|
|
1550
|
+
# Lists the Amazon Web Services SSO instances that the caller has
|
|
1551
|
+
# access to.
|
|
1551
1552
|
# @return [Array<Types::InstanceMetadata>]
|
|
1552
1553
|
#
|
|
1553
1554
|
# @!attribute [rw] next_token
|
|
@@ -1575,9 +1576,9 @@ module Aws::SSOAdmin
|
|
|
1575
1576
|
# }
|
|
1576
1577
|
#
|
|
1577
1578
|
# @!attribute [rw] instance_arn
|
|
1578
|
-
# The ARN of the SSO instance under which the
|
|
1579
|
-
# executed. For more information about ARNs, see
|
|
1580
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1579
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1580
|
+
# operation will be executed. For more information about ARNs, see
|
|
1581
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1581
1582
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1582
1583
|
# *Amazon Web Services General Reference*.
|
|
1583
1584
|
# @return [String]
|
|
@@ -1607,7 +1608,7 @@ module Aws::SSOAdmin
|
|
|
1607
1608
|
end
|
|
1608
1609
|
|
|
1609
1610
|
# @!attribute [rw] attached_managed_policies
|
|
1610
|
-
#
|
|
1611
|
+
# An array of the AttachedManagedPolicy data type object.
|
|
1611
1612
|
# @return [Array<Types::AttachedManagedPolicy>]
|
|
1612
1613
|
#
|
|
1613
1614
|
# @!attribute [rw] next_token
|
|
@@ -1637,9 +1638,9 @@ module Aws::SSOAdmin
|
|
|
1637
1638
|
# }
|
|
1638
1639
|
#
|
|
1639
1640
|
# @!attribute [rw] instance_arn
|
|
1640
|
-
# The ARN of the SSO instance under which the
|
|
1641
|
-
# executed. For more information about ARNs, see
|
|
1642
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1641
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1642
|
+
# operation will be executed. For more information about ARNs, see
|
|
1643
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1643
1644
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1644
1645
|
# *Amazon Web Services General Reference*.
|
|
1645
1646
|
# @return [String]
|
|
@@ -1698,9 +1699,9 @@ module Aws::SSOAdmin
|
|
|
1698
1699
|
# }
|
|
1699
1700
|
#
|
|
1700
1701
|
# @!attribute [rw] instance_arn
|
|
1701
|
-
# The ARN of the SSO instance under which the
|
|
1702
|
-
# executed. For more information about ARNs, see
|
|
1703
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1702
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1703
|
+
# operation will be executed. For more information about ARNs, see
|
|
1704
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1704
1705
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1705
1706
|
# *Amazon Web Services General Reference*.
|
|
1706
1707
|
# @return [String]
|
|
@@ -1763,9 +1764,9 @@ module Aws::SSOAdmin
|
|
|
1763
1764
|
# }
|
|
1764
1765
|
#
|
|
1765
1766
|
# @!attribute [rw] instance_arn
|
|
1766
|
-
# The ARN of the SSO instance under which the
|
|
1767
|
-
# executed. For more information about ARNs, see
|
|
1768
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1767
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1768
|
+
# operation will be executed. For more information about ARNs, see
|
|
1769
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1769
1770
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1770
1771
|
# *Amazon Web Services General Reference*.
|
|
1771
1772
|
# @return [String]
|
|
@@ -1817,9 +1818,9 @@ module Aws::SSOAdmin
|
|
|
1817
1818
|
# }
|
|
1818
1819
|
#
|
|
1819
1820
|
# @!attribute [rw] instance_arn
|
|
1820
|
-
# The ARN of the SSO instance under which the
|
|
1821
|
-
# executed. For more information about ARNs, see
|
|
1822
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
1821
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
1822
|
+
# operation will be executed. For more information about ARNs, see
|
|
1823
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
1823
1824
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
1824
1825
|
# *Amazon Web Services General Reference*.
|
|
1825
1826
|
# @return [String]
|
|
@@ -2002,13 +2003,12 @@ module Aws::SSOAdmin
|
|
|
2002
2003
|
# customer managed policy that you want to set as a permissions
|
|
2003
2004
|
# boundary. Specify either `CustomerManagedPolicyReference` to use the
|
|
2004
2005
|
# name and path of a customer managed policy, or `ManagedPolicyArn` to
|
|
2005
|
-
# use the ARN of an Amazon Web Services managed
|
|
2006
|
-
#
|
|
2007
|
-
#
|
|
2008
|
-
#
|
|
2009
|
-
# User Guide*.
|
|
2006
|
+
# use the ARN of an Amazon Web Services managed policy. A permissions
|
|
2007
|
+
# boundary represents the maximum permissions that any policy can grant
|
|
2008
|
+
# your role. For more information, see [Permissions boundaries for IAM
|
|
2009
|
+
# entities][1] in the *Identity and Access Management User Guide*.
|
|
2010
2010
|
#
|
|
2011
|
-
# Policies used as permissions boundaries
|
|
2011
|
+
# Policies used as permissions boundaries don't provide permissions.
|
|
2012
2012
|
# You must also attach an IAM policy to the role. To learn how the
|
|
2013
2013
|
# effective permissions for a role are evaluated, see [IAM JSON policy
|
|
2014
2014
|
# evaluation logic][2] in the *Identity and Access Management User
|
|
@@ -2031,10 +2031,9 @@ module Aws::SSOAdmin
|
|
|
2031
2031
|
# }
|
|
2032
2032
|
#
|
|
2033
2033
|
# @!attribute [rw] customer_managed_policy_reference
|
|
2034
|
-
# Specifies the name and path of
|
|
2035
|
-
#
|
|
2036
|
-
#
|
|
2037
|
-
# set.
|
|
2034
|
+
# Specifies the name and path of a customer managed policy. You must
|
|
2035
|
+
# have an IAM policy that matches the name and path in each Amazon Web
|
|
2036
|
+
# Services account where you want to deploy your permission set.
|
|
2038
2037
|
# @return [Types::CustomerManagedPolicyReference]
|
|
2039
2038
|
#
|
|
2040
2039
|
# @!attribute [rw] managed_policy_arn
|
|
@@ -2062,9 +2061,9 @@ module Aws::SSOAdmin
|
|
|
2062
2061
|
# }
|
|
2063
2062
|
#
|
|
2064
2063
|
# @!attribute [rw] instance_arn
|
|
2065
|
-
# The ARN of the SSO instance under which the
|
|
2066
|
-
# executed. For more information about ARNs, see
|
|
2067
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
2064
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2065
|
+
# operation will be executed. For more information about ARNs, see
|
|
2066
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2068
2067
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2069
2068
|
# *Amazon Web Services General Reference*.
|
|
2070
2069
|
# @return [String]
|
|
@@ -2115,9 +2114,9 @@ module Aws::SSOAdmin
|
|
|
2115
2114
|
# }
|
|
2116
2115
|
#
|
|
2117
2116
|
# @!attribute [rw] instance_arn
|
|
2118
|
-
# The ARN of the SSO instance under which the
|
|
2119
|
-
# executed. For more information about ARNs, see
|
|
2120
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
2117
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2118
|
+
# operation will be executed. For more information about ARNs, see
|
|
2119
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2121
2120
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2122
2121
|
# *Amazon Web Services General Reference*.
|
|
2123
2122
|
# @return [String]
|
|
@@ -2127,7 +2126,7 @@ module Aws::SSOAdmin
|
|
|
2127
2126
|
# @return [String]
|
|
2128
2127
|
#
|
|
2129
2128
|
# @!attribute [rw] inline_policy
|
|
2130
|
-
# The
|
|
2129
|
+
# The inline policy to attach to a PermissionSet.
|
|
2131
2130
|
# @return [String]
|
|
2132
2131
|
#
|
|
2133
2132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/PutInlinePolicyToPermissionSetRequest AWS API Documentation
|
|
@@ -2160,8 +2159,8 @@ module Aws::SSOAdmin
|
|
|
2160
2159
|
# }
|
|
2161
2160
|
#
|
|
2162
2161
|
# @!attribute [rw] instance_arn
|
|
2163
|
-
# The ARN of the SSO instance under which the
|
|
2164
|
-
# executed.
|
|
2162
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2163
|
+
# operation will be executed.
|
|
2165
2164
|
# @return [String]
|
|
2166
2165
|
#
|
|
2167
2166
|
# @!attribute [rw] permission_set_arn
|
|
@@ -2259,9 +2258,9 @@ module Aws::SSOAdmin
|
|
|
2259
2258
|
# }
|
|
2260
2259
|
#
|
|
2261
2260
|
# @!attribute [rw] instance_arn
|
|
2262
|
-
# The ARN of the SSO instance under which the
|
|
2263
|
-
# executed. For more information about ARNs, see
|
|
2264
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
2261
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2262
|
+
# operation will be executed. For more information about ARNs, see
|
|
2263
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2265
2264
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2266
2265
|
# *Amazon Web Services General Reference*.
|
|
2267
2266
|
# @return [String]
|
|
@@ -2312,9 +2311,9 @@ module Aws::SSOAdmin
|
|
|
2312
2311
|
# }
|
|
2313
2312
|
#
|
|
2314
2313
|
# @!attribute [rw] instance_arn
|
|
2315
|
-
# The ARN of the SSO instance under which the
|
|
2316
|
-
# executed. For more information about ARNs, see
|
|
2317
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
2314
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2315
|
+
# operation will be executed. For more information about ARNs, see
|
|
2316
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2318
2317
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2319
2318
|
# *Amazon Web Services General Reference*.
|
|
2320
2319
|
# @return [String]
|
|
@@ -2359,8 +2358,8 @@ module Aws::SSOAdmin
|
|
|
2359
2358
|
# }
|
|
2360
2359
|
#
|
|
2361
2360
|
# @!attribute [rw] instance_arn
|
|
2362
|
-
# The ARN of the SSO instance under which the
|
|
2363
|
-
# executed.
|
|
2361
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2362
|
+
# operation will be executed.
|
|
2364
2363
|
# @return [String]
|
|
2365
2364
|
#
|
|
2366
2365
|
# @!attribute [rw] instance_access_control_attribute_configuration
|
|
@@ -2392,9 +2391,9 @@ module Aws::SSOAdmin
|
|
|
2392
2391
|
# }
|
|
2393
2392
|
#
|
|
2394
2393
|
# @!attribute [rw] instance_arn
|
|
2395
|
-
# The ARN of the SSO instance under which the
|
|
2396
|
-
# executed. For more information about ARNs, see
|
|
2397
|
-
# Names (ARNs) and Amazon Web Services Service
|
|
2394
|
+
# The ARN of the Amazon Web Services SSO instance under which the
|
|
2395
|
+
# operation will be executed. For more information about ARNs, see
|
|
2396
|
+
# [Amazon Resource Names (ARNs) and Amazon Web Services Service
|
|
2398
2397
|
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
2399
2398
|
# *Amazon Web Services General Reference*.
|
|
2400
2399
|
# @return [String]
|
data/lib/aws-sdk-ssoadmin.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ssoadmin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|