@aws-sdk/client-sso-admin 3.325.0 → 3.326.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.
Files changed (38) hide show
  1. package/dist-types/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.d.ts +4 -0
  2. package/dist-types/commands/AttachManagedPolicyToPermissionSetCommand.d.ts +4 -0
  3. package/dist-types/commands/CreateAccountAssignmentCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateInstanceAccessControlAttributeConfigurationCommand.d.ts +4 -0
  5. package/dist-types/commands/CreatePermissionSetCommand.d.ts +13 -0
  6. package/dist-types/commands/DeleteAccountAssignmentCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteInlinePolicyFromPermissionSetCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.d.ts +4 -0
  9. package/dist-types/commands/DeletePermissionSetCommand.d.ts +4 -0
  10. package/dist-types/commands/DeletePermissionsBoundaryFromPermissionSetCommand.d.ts +4 -0
  11. package/dist-types/commands/DescribeAccountAssignmentCreationStatusCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeAccountAssignmentDeletionStatusCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.d.ts +19 -0
  14. package/dist-types/commands/DescribePermissionSetCommand.d.ts +13 -0
  15. package/dist-types/commands/DescribePermissionSetProvisioningStatusCommand.d.ts +13 -0
  16. package/dist-types/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.d.ts +4 -0
  17. package/dist-types/commands/DetachManagedPolicyFromPermissionSetCommand.d.ts +4 -0
  18. package/dist-types/commands/GetInlinePolicyForPermissionSetCommand.d.ts +6 -0
  19. package/dist-types/commands/GetPermissionsBoundaryForPermissionSetCommand.d.ts +12 -0
  20. package/dist-types/commands/ListAccountAssignmentCreationStatusCommand.d.ts +13 -0
  21. package/dist-types/commands/ListAccountAssignmentDeletionStatusCommand.d.ts +13 -0
  22. package/dist-types/commands/ListAccountAssignmentsCommand.d.ts +14 -0
  23. package/dist-types/commands/ListAccountsForProvisionedPermissionSetCommand.d.ts +9 -0
  24. package/dist-types/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.d.ts +12 -0
  25. package/dist-types/commands/ListInstancesCommand.d.ts +12 -0
  26. package/dist-types/commands/ListManagedPoliciesInPermissionSetCommand.d.ts +12 -0
  27. package/dist-types/commands/ListPermissionSetProvisioningStatusCommand.d.ts +13 -0
  28. package/dist-types/commands/ListPermissionSetsCommand.d.ts +9 -0
  29. package/dist-types/commands/ListPermissionSetsProvisionedToAccountCommand.d.ts +9 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  31. package/dist-types/commands/ProvisionPermissionSetCommand.d.ts +13 -0
  32. package/dist-types/commands/PutInlinePolicyToPermissionSetCommand.d.ts +4 -0
  33. package/dist-types/commands/PutPermissionsBoundaryToPermissionSetCommand.d.ts +4 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.d.ts +4 -0
  37. package/dist-types/commands/UpdatePermissionSetCommand.d.ts +4 -0
  38. package/package.json +3 -3
@@ -36,6 +36,8 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetCommandOutpu
36
36
  * };
37
37
  * const command = new AttachCustomerManagedPolicyReferenceToPermissionSetCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param AttachCustomerManagedPolicyReferenceToPermissionSetCommandInput - {@link AttachCustomerManagedPolicyReferenceToPermissionSetCommandInput}
@@ -71,6 +73,8 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetCommandOutpu
71
73
  * @throws {@link ValidationException} (client fault)
72
74
  * <p>The request failed because it contains a syntax error.</p>
73
75
  *
76
+ * @throws {@link SSOAdminServiceException}
77
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
74
78
  *
75
79
  */
76
80
  export declare class AttachCustomerManagedPolicyReferenceToPermissionSetCommand extends $Command<AttachCustomerManagedPolicyReferenceToPermissionSetCommandInput, AttachCustomerManagedPolicyReferenceToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -41,6 +41,8 @@ export interface AttachManagedPolicyToPermissionSetCommandOutput extends AttachM
41
41
  * };
42
42
  * const command = new AttachManagedPolicyToPermissionSetCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // {};
45
+ *
44
46
  * ```
45
47
  *
46
48
  * @param AttachManagedPolicyToPermissionSetCommandInput - {@link AttachManagedPolicyToPermissionSetCommandInput}
@@ -76,6 +78,8 @@ export interface AttachManagedPolicyToPermissionSetCommandOutput extends AttachM
76
78
  * @throws {@link ValidationException} (client fault)
77
79
  * <p>The request failed because it contains a syntax error.</p>
78
80
  *
81
+ * @throws {@link SSOAdminServiceException}
82
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
79
83
  *
80
84
  */
81
85
  export declare class AttachManagedPolicyToPermissionSetCommand extends $Command<AttachManagedPolicyToPermissionSetCommandInput, AttachManagedPolicyToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -55,6 +55,20 @@ export interface CreateAccountAssignmentCommandOutput extends CreateAccountAssig
55
55
  * };
56
56
  * const command = new CreateAccountAssignmentCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // CreateAccountAssignmentResponse
59
+ * // AccountAssignmentCreationStatus: { // AccountAssignmentOperationStatus
60
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
61
+ * // RequestId: "STRING_VALUE",
62
+ * // FailureReason: "STRING_VALUE",
63
+ * // TargetId: "STRING_VALUE",
64
+ * // TargetType: "AWS_ACCOUNT",
65
+ * // PermissionSetArn: "STRING_VALUE",
66
+ * // PrincipalType: "USER" || "GROUP",
67
+ * // PrincipalId: "STRING_VALUE",
68
+ * // CreatedDate: new Date("TIMESTAMP"),
69
+ * // },
70
+ * // };
71
+ *
58
72
  * ```
59
73
  *
60
74
  * @param CreateAccountAssignmentCommandInput - {@link CreateAccountAssignmentCommandInput}
@@ -90,6 +104,8 @@ export interface CreateAccountAssignmentCommandOutput extends CreateAccountAssig
90
104
  * @throws {@link ValidationException} (client fault)
91
105
  * <p>The request failed because it contains a syntax error.</p>
92
106
  *
107
+ * @throws {@link SSOAdminServiceException}
108
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
93
109
  *
94
110
  */
95
111
  export declare class CreateAccountAssignmentCommand extends $Command<CreateAccountAssignmentCommandInput, CreateAccountAssignmentCommandOutput, SSOAdminClientResolvedConfig> {
@@ -49,6 +49,8 @@ export interface CreateInstanceAccessControlAttributeConfigurationCommandOutput
49
49
  * };
50
50
  * const command = new CreateInstanceAccessControlAttributeConfigurationCommand(input);
51
51
  * const response = await client.send(command);
52
+ * // {};
53
+ *
52
54
  * ```
53
55
  *
54
56
  * @param CreateInstanceAccessControlAttributeConfigurationCommandInput - {@link CreateInstanceAccessControlAttributeConfigurationCommandInput}
@@ -80,6 +82,8 @@ export interface CreateInstanceAccessControlAttributeConfigurationCommandOutput
80
82
  * @throws {@link ValidationException} (client fault)
81
83
  * <p>The request failed because it contains a syntax error.</p>
82
84
  *
85
+ * @throws {@link SSOAdminServiceException}
86
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
83
87
  *
84
88
  */
85
89
  export declare class CreateInstanceAccessControlAttributeConfigurationCommand extends $Command<CreateInstanceAccessControlAttributeConfigurationCommandInput, CreateInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
@@ -46,6 +46,17 @@ export interface CreatePermissionSetCommandOutput extends CreatePermissionSetRes
46
46
  * };
47
47
  * const command = new CreatePermissionSetCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // CreatePermissionSetResponse
50
+ * // PermissionSet: { // PermissionSet
51
+ * // Name: "STRING_VALUE",
52
+ * // PermissionSetArn: "STRING_VALUE",
53
+ * // Description: "STRING_VALUE",
54
+ * // CreatedDate: new Date("TIMESTAMP"),
55
+ * // SessionDuration: "STRING_VALUE",
56
+ * // RelayState: "STRING_VALUE",
57
+ * // },
58
+ * // };
59
+ *
49
60
  * ```
50
61
  *
51
62
  * @param CreatePermissionSetCommandInput - {@link CreatePermissionSetCommandInput}
@@ -81,6 +92,8 @@ export interface CreatePermissionSetCommandOutput extends CreatePermissionSetRes
81
92
  * @throws {@link ValidationException} (client fault)
82
93
  * <p>The request failed because it contains a syntax error.</p>
83
94
  *
95
+ * @throws {@link SSOAdminServiceException}
96
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
84
97
  *
85
98
  */
86
99
  export declare class CreatePermissionSetCommand extends $Command<CreatePermissionSetCommandInput, CreatePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -40,6 +40,20 @@ export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssig
40
40
  * };
41
41
  * const command = new DeleteAccountAssignmentCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // DeleteAccountAssignmentResponse
44
+ * // AccountAssignmentDeletionStatus: { // AccountAssignmentOperationStatus
45
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
46
+ * // RequestId: "STRING_VALUE",
47
+ * // FailureReason: "STRING_VALUE",
48
+ * // TargetId: "STRING_VALUE",
49
+ * // TargetType: "AWS_ACCOUNT",
50
+ * // PermissionSetArn: "STRING_VALUE",
51
+ * // PrincipalType: "USER" || "GROUP",
52
+ * // PrincipalId: "STRING_VALUE",
53
+ * // CreatedDate: new Date("TIMESTAMP"),
54
+ * // },
55
+ * // };
56
+ *
43
57
  * ```
44
58
  *
45
59
  * @param DeleteAccountAssignmentCommandInput - {@link DeleteAccountAssignmentCommandInput}
@@ -71,6 +85,8 @@ export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssig
71
85
  * @throws {@link ValidationException} (client fault)
72
86
  * <p>The request failed because it contains a syntax error.</p>
73
87
  *
88
+ * @throws {@link SSOAdminServiceException}
89
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
74
90
  *
75
91
  */
76
92
  export declare class DeleteAccountAssignmentCommand extends $Command<DeleteAccountAssignmentCommandInput, DeleteAccountAssignmentCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteInlinePolicyFromPermissionSetCommandOutput extends Delete
32
32
  * };
33
33
  * const command = new DeleteInlinePolicyFromPermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteInlinePolicyFromPermissionSetCommandInput - {@link DeleteInlinePolicyFromPermissionSetCommandInput}
@@ -63,6 +65,8 @@ export interface DeleteInlinePolicyFromPermissionSetCommandOutput extends Delete
63
65
  * @throws {@link ValidationException} (client fault)
64
66
  * <p>The request failed because it contains a syntax error.</p>
65
67
  *
68
+ * @throws {@link SSOAdminServiceException}
69
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
66
70
  *
67
71
  */
68
72
  export declare class DeleteInlinePolicyFromPermissionSetCommand extends $Command<DeleteInlinePolicyFromPermissionSetCommandInput, DeleteInlinePolicyFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput
34
34
  * };
35
35
  * const command = new DeleteInstanceAccessControlAttributeConfigurationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteInstanceAccessControlAttributeConfigurationCommandInput - {@link DeleteInstanceAccessControlAttributeConfigurationCommandInput}
@@ -65,6 +67,8 @@ export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput
65
67
  * @throws {@link ValidationException} (client fault)
66
68
  * <p>The request failed because it contains a syntax error.</p>
67
69
  *
70
+ * @throws {@link SSOAdminServiceException}
71
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
68
72
  *
69
73
  */
70
74
  export declare class DeleteInstanceAccessControlAttributeConfigurationCommand extends $Command<DeleteInstanceAccessControlAttributeConfigurationCommandInput, DeleteInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeletePermissionSetCommandOutput extends DeletePermissionSetRes
32
32
  * };
33
33
  * const command = new DeletePermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeletePermissionSetCommandInput - {@link DeletePermissionSetCommandInput}
@@ -63,6 +65,8 @@ export interface DeletePermissionSetCommandOutput extends DeletePermissionSetRes
63
65
  * @throws {@link ValidationException} (client fault)
64
66
  * <p>The request failed because it contains a syntax error.</p>
65
67
  *
68
+ * @throws {@link SSOAdminServiceException}
69
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
66
70
  *
67
71
  */
68
72
  export declare class DeletePermissionSetCommand extends $Command<DeletePermissionSetCommandInput, DeletePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput extends
32
32
  * };
33
33
  * const command = new DeletePermissionsBoundaryFromPermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeletePermissionsBoundaryFromPermissionSetCommandInput - {@link DeletePermissionsBoundaryFromPermissionSetCommandInput}
@@ -57,6 +59,8 @@ export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput extends
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The request failed because it contains a syntax error.</p>
59
61
  *
62
+ * @throws {@link SSOAdminServiceException}
63
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeletePermissionsBoundaryFromPermissionSetCommand extends $Command<DeletePermissionsBoundaryFromPermissionSetCommandInput, DeletePermissionsBoundaryFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,20 @@ export interface DescribeAccountAssignmentCreationStatusCommandOutput extends De
32
32
  * };
33
33
  * const command = new DescribeAccountAssignmentCreationStatusCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAccountAssignmentCreationStatusResponse
36
+ * // AccountAssignmentCreationStatus: { // AccountAssignmentOperationStatus
37
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
38
+ * // RequestId: "STRING_VALUE",
39
+ * // FailureReason: "STRING_VALUE",
40
+ * // TargetId: "STRING_VALUE",
41
+ * // TargetType: "AWS_ACCOUNT",
42
+ * // PermissionSetArn: "STRING_VALUE",
43
+ * // PrincipalType: "USER" || "GROUP",
44
+ * // PrincipalId: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
35
49
  * ```
36
50
  *
37
51
  * @param DescribeAccountAssignmentCreationStatusCommandInput - {@link DescribeAccountAssignmentCreationStatusCommandInput}
@@ -57,6 +71,8 @@ export interface DescribeAccountAssignmentCreationStatusCommandOutput extends De
57
71
  * @throws {@link ValidationException} (client fault)
58
72
  * <p>The request failed because it contains a syntax error.</p>
59
73
  *
74
+ * @throws {@link SSOAdminServiceException}
75
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
76
  *
61
77
  */
62
78
  export declare class DescribeAccountAssignmentCreationStatusCommand extends $Command<DescribeAccountAssignmentCreationStatusCommandInput, DescribeAccountAssignmentCreationStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,20 @@ export interface DescribeAccountAssignmentDeletionStatusCommandOutput extends De
32
32
  * };
33
33
  * const command = new DescribeAccountAssignmentDeletionStatusCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAccountAssignmentDeletionStatusResponse
36
+ * // AccountAssignmentDeletionStatus: { // AccountAssignmentOperationStatus
37
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
38
+ * // RequestId: "STRING_VALUE",
39
+ * // FailureReason: "STRING_VALUE",
40
+ * // TargetId: "STRING_VALUE",
41
+ * // TargetType: "AWS_ACCOUNT",
42
+ * // PermissionSetArn: "STRING_VALUE",
43
+ * // PrincipalType: "USER" || "GROUP",
44
+ * // PrincipalId: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
35
49
  * ```
36
50
  *
37
51
  * @param DescribeAccountAssignmentDeletionStatusCommandInput - {@link DescribeAccountAssignmentDeletionStatusCommandInput}
@@ -57,6 +71,8 @@ export interface DescribeAccountAssignmentDeletionStatusCommandOutput extends De
57
71
  * @throws {@link ValidationException} (client fault)
58
72
  * <p>The request failed because it contains a syntax error.</p>
59
73
  *
74
+ * @throws {@link SSOAdminServiceException}
75
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
76
  *
61
77
  */
62
78
  export declare class DescribeAccountAssignmentDeletionStatusCommand extends $Command<DescribeAccountAssignmentDeletionStatusCommandInput, DescribeAccountAssignmentDeletionStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -33,6 +33,23 @@ export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutpu
33
33
  * };
34
34
  * const command = new DescribeInstanceAccessControlAttributeConfigurationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeInstanceAccessControlAttributeConfigurationResponse
37
+ * // Status: "ENABLED" || "CREATION_IN_PROGRESS" || "CREATION_FAILED",
38
+ * // StatusReason: "STRING_VALUE",
39
+ * // InstanceAccessControlAttributeConfiguration: { // InstanceAccessControlAttributeConfiguration
40
+ * // AccessControlAttributes: [ // AccessControlAttributeList // required
41
+ * // { // AccessControlAttribute
42
+ * // Key: "STRING_VALUE", // required
43
+ * // Value: { // AccessControlAttributeValue
44
+ * // Source: [ // AccessControlAttributeValueSourceList // required
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // },
48
+ * // },
49
+ * // ],
50
+ * // },
51
+ * // };
52
+ *
36
53
  * ```
37
54
  *
38
55
  * @param DescribeInstanceAccessControlAttributeConfigurationCommandInput - {@link DescribeInstanceAccessControlAttributeConfigurationCommandInput}
@@ -58,6 +75,8 @@ export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutpu
58
75
  * @throws {@link ValidationException} (client fault)
59
76
  * <p>The request failed because it contains a syntax error.</p>
60
77
  *
78
+ * @throws {@link SSOAdminServiceException}
79
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
61
80
  *
62
81
  */
63
82
  export declare class DescribeInstanceAccessControlAttributeConfigurationCommand extends $Command<DescribeInstanceAccessControlAttributeConfigurationCommandInput, DescribeInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface DescribePermissionSetCommandOutput extends DescribePermissionSe
32
32
  * };
33
33
  * const command = new DescribePermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribePermissionSetResponse
36
+ * // PermissionSet: { // PermissionSet
37
+ * // Name: "STRING_VALUE",
38
+ * // PermissionSetArn: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // CreatedDate: new Date("TIMESTAMP"),
41
+ * // SessionDuration: "STRING_VALUE",
42
+ * // RelayState: "STRING_VALUE",
43
+ * // },
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param DescribePermissionSetCommandInput - {@link DescribePermissionSetCommandInput}
@@ -57,6 +68,8 @@ export interface DescribePermissionSetCommandOutput extends DescribePermissionSe
57
68
  * @throws {@link ValidationException} (client fault)
58
69
  * <p>The request failed because it contains a syntax error.</p>
59
70
  *
71
+ * @throws {@link SSOAdminServiceException}
72
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
73
  *
61
74
  */
62
75
  export declare class DescribePermissionSetCommand extends $Command<DescribePermissionSetCommandInput, DescribePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface DescribePermissionSetProvisioningStatusCommandOutput extends De
32
32
  * };
33
33
  * const command = new DescribePermissionSetProvisioningStatusCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribePermissionSetProvisioningStatusResponse
36
+ * // PermissionSetProvisioningStatus: { // PermissionSetProvisioningStatus
37
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
38
+ * // RequestId: "STRING_VALUE",
39
+ * // AccountId: "STRING_VALUE",
40
+ * // PermissionSetArn: "STRING_VALUE",
41
+ * // FailureReason: "STRING_VALUE",
42
+ * // CreatedDate: new Date("TIMESTAMP"),
43
+ * // },
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param DescribePermissionSetProvisioningStatusCommandInput - {@link DescribePermissionSetProvisioningStatusCommandInput}
@@ -57,6 +68,8 @@ export interface DescribePermissionSetProvisioningStatusCommandOutput extends De
57
68
  * @throws {@link ValidationException} (client fault)
58
69
  * <p>The request failed because it contains a syntax error.</p>
59
70
  *
71
+ * @throws {@link SSOAdminServiceException}
72
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
73
  *
61
74
  */
62
75
  export declare class DescribePermissionSetProvisioningStatusCommand extends $Command<DescribePermissionSetProvisioningStatusCommandInput, DescribePermissionSetProvisioningStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOut
36
36
  * };
37
37
  * const command = new DetachCustomerManagedPolicyReferenceFromPermissionSetCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput - {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput}
@@ -67,6 +69,8 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOut
67
69
  * @throws {@link ValidationException} (client fault)
68
70
  * <p>The request failed because it contains a syntax error.</p>
69
71
  *
72
+ * @throws {@link SSOAdminServiceException}
73
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
70
74
  *
71
75
  */
72
76
  export declare class DetachCustomerManagedPolicyReferenceFromPermissionSetCommand extends $Command<DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput, DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DetachManagedPolicyFromPermissionSetCommandOutput extends Detac
33
33
  * };
34
34
  * const command = new DetachManagedPolicyFromPermissionSetCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DetachManagedPolicyFromPermissionSetCommandInput - {@link DetachManagedPolicyFromPermissionSetCommandInput}
@@ -64,6 +66,8 @@ export interface DetachManagedPolicyFromPermissionSetCommandOutput extends Detac
64
66
  * @throws {@link ValidationException} (client fault)
65
67
  * <p>The request failed because it contains a syntax error.</p>
66
68
  *
69
+ * @throws {@link SSOAdminServiceException}
70
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
67
71
  *
68
72
  */
69
73
  export declare class DetachManagedPolicyFromPermissionSetCommand extends $Command<DetachManagedPolicyFromPermissionSetCommandInput, DetachManagedPolicyFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface GetInlinePolicyForPermissionSetCommandOutput extends GetInlineP
32
32
  * };
33
33
  * const command = new GetInlinePolicyForPermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetInlinePolicyForPermissionSetResponse
36
+ * // InlinePolicy: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param GetInlinePolicyForPermissionSetCommandInput - {@link GetInlinePolicyForPermissionSetCommandInput}
@@ -57,6 +61,8 @@ export interface GetInlinePolicyForPermissionSetCommandOutput extends GetInlineP
57
61
  * @throws {@link ValidationException} (client fault)
58
62
  * <p>The request failed because it contains a syntax error.</p>
59
63
  *
64
+ * @throws {@link SSOAdminServiceException}
65
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
66
  *
61
67
  */
62
68
  export declare class GetInlinePolicyForPermissionSetCommand extends $Command<GetInlinePolicyForPermissionSetCommandInput, GetInlinePolicyForPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,16 @@ export interface GetPermissionsBoundaryForPermissionSetCommandOutput extends Get
32
32
  * };
33
33
  * const command = new GetPermissionsBoundaryForPermissionSetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetPermissionsBoundaryForPermissionSetResponse
36
+ * // PermissionsBoundary: { // PermissionsBoundary
37
+ * // CustomerManagedPolicyReference: { // CustomerManagedPolicyReference
38
+ * // Name: "STRING_VALUE", // required
39
+ * // Path: "STRING_VALUE",
40
+ * // },
41
+ * // ManagedPolicyArn: "STRING_VALUE",
42
+ * // },
43
+ * // };
44
+ *
35
45
  * ```
36
46
  *
37
47
  * @param GetPermissionsBoundaryForPermissionSetCommandInput - {@link GetPermissionsBoundaryForPermissionSetCommandInput}
@@ -57,6 +67,8 @@ export interface GetPermissionsBoundaryForPermissionSetCommandOutput extends Get
57
67
  * @throws {@link ValidationException} (client fault)
58
68
  * <p>The request failed because it contains a syntax error.</p>
59
69
  *
70
+ * @throws {@link SSOAdminServiceException}
71
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
60
72
  *
61
73
  */
62
74
  export declare class GetPermissionsBoundaryForPermissionSetCommand extends $Command<GetPermissionsBoundaryForPermissionSetCommandInput, GetPermissionsBoundaryForPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -37,6 +37,17 @@ export interface ListAccountAssignmentCreationStatusCommandOutput extends ListAc
37
37
  * };
38
38
  * const command = new ListAccountAssignmentCreationStatusCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListAccountAssignmentCreationStatusResponse
41
+ * // AccountAssignmentsCreationStatus: [ // AccountAssignmentOperationStatusList
42
+ * // { // AccountAssignmentOperationStatusMetadata
43
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
44
+ * // RequestId: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
40
51
  * ```
41
52
  *
42
53
  * @param ListAccountAssignmentCreationStatusCommandInput - {@link ListAccountAssignmentCreationStatusCommandInput}
@@ -62,6 +73,8 @@ export interface ListAccountAssignmentCreationStatusCommandOutput extends ListAc
62
73
  * @throws {@link ValidationException} (client fault)
63
74
  * <p>The request failed because it contains a syntax error.</p>
64
75
  *
76
+ * @throws {@link SSOAdminServiceException}
77
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
65
78
  *
66
79
  */
67
80
  export declare class ListAccountAssignmentCreationStatusCommand extends $Command<ListAccountAssignmentCreationStatusCommandInput, ListAccountAssignmentCreationStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -37,6 +37,17 @@ export interface ListAccountAssignmentDeletionStatusCommandOutput extends ListAc
37
37
  * };
38
38
  * const command = new ListAccountAssignmentDeletionStatusCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListAccountAssignmentDeletionStatusResponse
41
+ * // AccountAssignmentsDeletionStatus: [ // AccountAssignmentOperationStatusList
42
+ * // { // AccountAssignmentOperationStatusMetadata
43
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
44
+ * // RequestId: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
40
51
  * ```
41
52
  *
42
53
  * @param ListAccountAssignmentDeletionStatusCommandInput - {@link ListAccountAssignmentDeletionStatusCommandInput}
@@ -62,6 +73,8 @@ export interface ListAccountAssignmentDeletionStatusCommandOutput extends ListAc
62
73
  * @throws {@link ValidationException} (client fault)
63
74
  * <p>The request failed because it contains a syntax error.</p>
64
75
  *
76
+ * @throws {@link SSOAdminServiceException}
77
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
65
78
  *
66
79
  */
67
80
  export declare class ListAccountAssignmentDeletionStatusCommand extends $Command<ListAccountAssignmentDeletionStatusCommandInput, ListAccountAssignmentDeletionStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface ListAccountAssignmentsCommandOutput extends ListAccountAssignme
35
35
  * };
36
36
  * const command = new ListAccountAssignmentsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListAccountAssignmentsResponse
39
+ * // AccountAssignments: [ // AccountAssignmentList
40
+ * // { // AccountAssignment
41
+ * // AccountId: "STRING_VALUE",
42
+ * // PermissionSetArn: "STRING_VALUE",
43
+ * // PrincipalType: "USER" || "GROUP",
44
+ * // PrincipalId: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param ListAccountAssignmentsCommandInput - {@link ListAccountAssignmentsCommandInput}
@@ -60,6 +72,8 @@ export interface ListAccountAssignmentsCommandOutput extends ListAccountAssignme
60
72
  * @throws {@link ValidationException} (client fault)
61
73
  * <p>The request failed because it contains a syntax error.</p>
62
74
  *
75
+ * @throws {@link SSOAdminServiceException}
76
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
63
77
  *
64
78
  */
65
79
  export declare class ListAccountAssignmentsCommand extends $Command<ListAccountAssignmentsCommandInput, ListAccountAssignmentsCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface ListAccountsForProvisionedPermissionSetCommandOutput extends Li
35
35
  * };
36
36
  * const command = new ListAccountsForProvisionedPermissionSetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListAccountsForProvisionedPermissionSetResponse
39
+ * // AccountIds: [ // AccountList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // NextToken: "STRING_VALUE",
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param ListAccountsForProvisionedPermissionSetCommandInput - {@link ListAccountsForProvisionedPermissionSetCommandInput}
@@ -60,6 +67,8 @@ export interface ListAccountsForProvisionedPermissionSetCommandOutput extends Li
60
67
  * @throws {@link ValidationException} (client fault)
61
68
  * <p>The request failed because it contains a syntax error.</p>
62
69
  *
70
+ * @throws {@link SSOAdminServiceException}
71
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
63
72
  *
64
73
  */
65
74
  export declare class ListAccountsForProvisionedPermissionSetCommand extends $Command<ListAccountsForProvisionedPermissionSetCommandInput, ListAccountsForProvisionedPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput
34
34
  * };
35
35
  * const command = new ListCustomerManagedPolicyReferencesInPermissionSetCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListCustomerManagedPolicyReferencesInPermissionSetResponse
38
+ * // CustomerManagedPolicyReferences: [ // CustomerManagedPolicyReferenceList
39
+ * // { // CustomerManagedPolicyReference
40
+ * // Name: "STRING_VALUE", // required
41
+ * // Path: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListCustomerManagedPolicyReferencesInPermissionSetCommandInput - {@link ListCustomerManagedPolicyReferencesInPermissionSetCommandInput}
@@ -59,6 +69,8 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput
59
69
  * @throws {@link ValidationException} (client fault)
60
70
  * <p>The request failed because it contains a syntax error.</p>
61
71
  *
72
+ * @throws {@link SSOAdminServiceException}
73
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
62
74
  *
63
75
  */
64
76
  export declare class ListCustomerManagedPolicyReferencesInPermissionSetCommand extends $Command<ListCustomerManagedPolicyReferencesInPermissionSetCommandInput, ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -32,6 +32,16 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
32
32
  * };
33
33
  * const command = new ListInstancesCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListInstancesResponse
36
+ * // Instances: [ // InstanceList
37
+ * // { // InstanceMetadata
38
+ * // InstanceArn: "STRING_VALUE",
39
+ * // IdentityStoreId: "STRING_VALUE",
40
+ * // },
41
+ * // ],
42
+ * // NextToken: "STRING_VALUE",
43
+ * // };
44
+ *
35
45
  * ```
36
46
  *
37
47
  * @param ListInstancesCommandInput - {@link ListInstancesCommandInput}
@@ -54,6 +64,8 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
54
64
  * @throws {@link ValidationException} (client fault)
55
65
  * <p>The request failed because it contains a syntax error.</p>
56
66
  *
67
+ * @throws {@link SSOAdminServiceException}
68
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
57
69
  *
58
70
  */
59
71
  export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, SSOAdminClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListManagedPoliciesInPermissionSetCommandOutput extends ListMan
34
34
  * };
35
35
  * const command = new ListManagedPoliciesInPermissionSetCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListManagedPoliciesInPermissionSetResponse
38
+ * // AttachedManagedPolicies: [ // AttachedManagedPolicyList
39
+ * // { // AttachedManagedPolicy
40
+ * // Name: "STRING_VALUE",
41
+ * // Arn: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListManagedPoliciesInPermissionSetCommandInput - {@link ListManagedPoliciesInPermissionSetCommandInput}
@@ -59,6 +69,8 @@ export interface ListManagedPoliciesInPermissionSetCommandOutput extends ListMan
59
69
  * @throws {@link ValidationException} (client fault)
60
70
  * <p>The request failed because it contains a syntax error.</p>
61
71
  *
72
+ * @throws {@link SSOAdminServiceException}
73
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
62
74
  *
63
75
  */
64
76
  export declare class ListManagedPoliciesInPermissionSetCommand extends $Command<ListManagedPoliciesInPermissionSetCommandInput, ListManagedPoliciesInPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -37,6 +37,17 @@ export interface ListPermissionSetProvisioningStatusCommandOutput extends ListPe
37
37
  * };
38
38
  * const command = new ListPermissionSetProvisioningStatusCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListPermissionSetProvisioningStatusResponse
41
+ * // PermissionSetsProvisioningStatus: [ // PermissionSetProvisioningStatusList
42
+ * // { // PermissionSetProvisioningStatusMetadata
43
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
44
+ * // RequestId: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
40
51
  * ```
41
52
  *
42
53
  * @param ListPermissionSetProvisioningStatusCommandInput - {@link ListPermissionSetProvisioningStatusCommandInput}
@@ -62,6 +73,8 @@ export interface ListPermissionSetProvisioningStatusCommandOutput extends ListPe
62
73
  * @throws {@link ValidationException} (client fault)
63
74
  * <p>The request failed because it contains a syntax error.</p>
64
75
  *
76
+ * @throws {@link SSOAdminServiceException}
77
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
65
78
  *
66
79
  */
67
80
  export declare class ListPermissionSetProvisioningStatusCommand extends $Command<ListPermissionSetProvisioningStatusCommandInput, ListPermissionSetProvisioningStatusCommandOutput, SSOAdminClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface ListPermissionSetsCommandOutput extends ListPermissionSetsRespo
33
33
  * };
34
34
  * const command = new ListPermissionSetsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListPermissionSetsResponse
37
+ * // PermissionSets: [ // PermissionSetList
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // NextToken: "STRING_VALUE",
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param ListPermissionSetsCommandInput - {@link ListPermissionSetsCommandInput}
@@ -58,6 +65,8 @@ export interface ListPermissionSetsCommandOutput extends ListPermissionSetsRespo
58
65
  * @throws {@link ValidationException} (client fault)
59
66
  * <p>The request failed because it contains a syntax error.</p>
60
67
  *
68
+ * @throws {@link SSOAdminServiceException}
69
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
61
70
  *
62
71
  */
63
72
  export declare class ListPermissionSetsCommand extends $Command<ListPermissionSetsCommandInput, ListPermissionSetsCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface ListPermissionSetsProvisionedToAccountCommandOutput extends Lis
35
35
  * };
36
36
  * const command = new ListPermissionSetsProvisionedToAccountCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListPermissionSetsProvisionedToAccountResponse
39
+ * // NextToken: "STRING_VALUE",
40
+ * // PermissionSets: [ // PermissionSetList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param ListPermissionSetsProvisionedToAccountCommandInput - {@link ListPermissionSetsProvisionedToAccountCommandInput}
@@ -60,6 +67,8 @@ export interface ListPermissionSetsProvisionedToAccountCommandOutput extends Lis
60
67
  * @throws {@link ValidationException} (client fault)
61
68
  * <p>The request failed because it contains a syntax error.</p>
62
69
  *
70
+ * @throws {@link SSOAdminServiceException}
71
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
63
72
  *
64
73
  */
65
74
  export declare class ListPermissionSetsProvisionedToAccountCommand extends $Command<ListPermissionSetsProvisionedToAccountCommandInput, ListPermissionSetsProvisionedToAccountCommandOutput, SSOAdminClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // Tags: [ // TagList
38
+ * // { // Tag
39
+ * // Key: "STRING_VALUE", // required
40
+ * // Value: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -58,6 +68,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
58
68
  * @throws {@link ValidationException} (client fault)
59
69
  * <p>The request failed because it contains a syntax error.</p>
60
70
  *
71
+ * @throws {@link SSOAdminServiceException}
72
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
61
73
  *
62
74
  */
63
75
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,17 @@ export interface ProvisionPermissionSetCommandOutput extends ProvisionPermission
35
35
  * };
36
36
  * const command = new ProvisionPermissionSetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ProvisionPermissionSetResponse
39
+ * // PermissionSetProvisioningStatus: { // PermissionSetProvisioningStatus
40
+ * // Status: "IN_PROGRESS" || "FAILED" || "SUCCEEDED",
41
+ * // RequestId: "STRING_VALUE",
42
+ * // AccountId: "STRING_VALUE",
43
+ * // PermissionSetArn: "STRING_VALUE",
44
+ * // FailureReason: "STRING_VALUE",
45
+ * // CreatedDate: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
38
49
  * ```
39
50
  *
40
51
  * @param ProvisionPermissionSetCommandInput - {@link ProvisionPermissionSetCommandInput}
@@ -66,6 +77,8 @@ export interface ProvisionPermissionSetCommandOutput extends ProvisionPermission
66
77
  * @throws {@link ValidationException} (client fault)
67
78
  * <p>The request failed because it contains a syntax error.</p>
68
79
  *
80
+ * @throws {@link SSOAdminServiceException}
81
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
69
82
  *
70
83
  */
71
84
  export declare class ProvisionPermissionSetCommand extends $Command<ProvisionPermissionSetCommandInput, ProvisionPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -40,6 +40,8 @@ export interface PutInlinePolicyToPermissionSetCommandOutput extends PutInlinePo
40
40
  * };
41
41
  * const command = new PutInlinePolicyToPermissionSetCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // {};
44
+ *
43
45
  * ```
44
46
  *
45
47
  * @param PutInlinePolicyToPermissionSetCommandInput - {@link PutInlinePolicyToPermissionSetCommandInput}
@@ -75,6 +77,8 @@ export interface PutInlinePolicyToPermissionSetCommandOutput extends PutInlinePo
75
77
  * @throws {@link ValidationException} (client fault)
76
78
  * <p>The request failed because it contains a syntax error.</p>
77
79
  *
80
+ * @throws {@link SSOAdminServiceException}
81
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
78
82
  *
79
83
  */
80
84
  export declare class PutInlinePolicyToPermissionSetCommand extends $Command<PutInlinePolicyToPermissionSetCommandInput, PutInlinePolicyToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -39,6 +39,8 @@ export interface PutPermissionsBoundaryToPermissionSetCommandOutput extends PutP
39
39
  * };
40
40
  * const command = new PutPermissionsBoundaryToPermissionSetCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // {};
43
+ *
42
44
  * ```
43
45
  *
44
46
  * @param PutPermissionsBoundaryToPermissionSetCommandInput - {@link PutPermissionsBoundaryToPermissionSetCommandInput}
@@ -70,6 +72,8 @@ export interface PutPermissionsBoundaryToPermissionSetCommandOutput extends PutP
70
72
  * @throws {@link ValidationException} (client fault)
71
73
  * <p>The request failed because it contains a syntax error.</p>
72
74
  *
75
+ * @throws {@link SSOAdminServiceException}
76
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
73
77
  *
74
78
  */
75
79
  export declare class PutPermissionsBoundaryToPermissionSetCommand extends $Command<PutPermissionsBoundaryToPermissionSetCommandInput, PutPermissionsBoundaryToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
38
38
  * };
39
39
  * const command = new TagResourceCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -73,6 +75,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
73
75
  * @throws {@link ValidationException} (client fault)
74
76
  * <p>The request failed because it contains a syntax error.</p>
75
77
  *
78
+ * @throws {@link SSOAdminServiceException}
79
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
76
80
  *
77
81
  */
78
82
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
35
35
  * };
36
36
  * const command = new UntagResourceCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -66,6 +68,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
66
68
  * @throws {@link ValidationException} (client fault)
67
69
  * <p>The request failed because it contains a syntax error.</p>
68
70
  *
71
+ * @throws {@link SSOAdminServiceException}
72
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
69
73
  *
70
74
  */
71
75
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSOAdminClientResolvedConfig> {
@@ -48,6 +48,8 @@ export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput
48
48
  * };
49
49
  * const command = new UpdateInstanceAccessControlAttributeConfigurationCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // {};
52
+ *
51
53
  * ```
52
54
  *
53
55
  * @param UpdateInstanceAccessControlAttributeConfigurationCommandInput - {@link UpdateInstanceAccessControlAttributeConfigurationCommandInput}
@@ -79,6 +81,8 @@ export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput
79
81
  * @throws {@link ValidationException} (client fault)
80
82
  * <p>The request failed because it contains a syntax error.</p>
81
83
  *
84
+ * @throws {@link SSOAdminServiceException}
85
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
82
86
  *
83
87
  */
84
88
  export declare class UpdateInstanceAccessControlAttributeConfigurationCommand extends $Command<UpdateInstanceAccessControlAttributeConfigurationCommandInput, UpdateInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface UpdatePermissionSetCommandOutput extends UpdatePermissionSetRes
35
35
  * };
36
36
  * const command = new UpdatePermissionSetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param UpdatePermissionSetCommandInput - {@link UpdatePermissionSetCommandInput}
@@ -66,6 +68,8 @@ export interface UpdatePermissionSetCommandOutput extends UpdatePermissionSetRes
66
68
  * @throws {@link ValidationException} (client fault)
67
69
  * <p>The request failed because it contains a syntax error.</p>
68
70
  *
71
+ * @throws {@link SSOAdminServiceException}
72
+ * <p>Base exception class for all service exceptions from SSOAdmin service.</p>
69
73
  *
70
74
  */
71
75
  export declare class UpdatePermissionSetCommand extends $Command<UpdatePermissionSetCommandInput, UpdatePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sso-admin",
3
3
  "description": "AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",