@aws-sdk/client-sso-admin 3.296.0 → 3.297.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.
- package/dist-types/SSOAdmin.d.ts +38 -0
- package/dist-types/SSOAdminClient.d.ts +24 -4
- package/dist-types/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/AttachManagedPolicyToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateAccountAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreatePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccountAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInlinePolicyFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionsBoundaryFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAssignmentCreationStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAssignmentDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DescribePermissionSetProvisioningStatusCommand.d.ts +16 -0
- package/dist-types/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DetachManagedPolicyFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/GetInlinePolicyForPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/GetPermissionsBoundaryForPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentCreationStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountsForProvisionedPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListManagedPoliciesInPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetProvisioningStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetsProvisionedToAccountCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ProvisionPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/PutInlinePolicyToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/PutPermissionsBoundaryToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePermissionSetCommand.d.ts +16 -0
- package/dist-types/models/SSOAdminServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +262 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentCreationStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentDeletionStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountsForProvisionedPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListManagedPoliciesInPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetProvisioningStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetsProvisionedToAccountPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteAccountAssignmentRequest, DeleteAccountAssignmentResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAccountAssignmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAccountAssignmentCommandInput extends DeleteAccountAssignmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAccountAssignmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssignmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a principal's access from a specified AWS account using a specified permission
|
|
18
23
|
* set.</p>
|
|
19
24
|
* <note>
|
|
@@ -29,6 +34,8 @@ export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssig
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteAccountAssignmentCommandInput - {@link DeleteAccountAssignmentCommandInput}
|
|
38
|
+
* @returns {@link DeleteAccountAssignmentCommandOutput}
|
|
32
39
|
* @see {@link DeleteAccountAssignmentCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteAccountAssignmentCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssig
|
|
|
61
68
|
export declare class DeleteAccountAssignmentCommand extends $Command<DeleteAccountAssignmentCommandInput, DeleteAccountAssignmentCommandOutput, SSOAdminClientResolvedConfig> {
|
|
62
69
|
readonly input: DeleteAccountAssignmentCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: DeleteAccountAssignmentCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccountAssignmentCommandInput, DeleteAccountAssignmentCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteInlinePolicyFromPermissionSetRequest, DeleteInlinePolicyFromPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteInlinePolicyFromPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteInlinePolicyFromPermissionSetCommandInput extends DeleteInlinePolicyFromPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteInlinePolicyFromPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteInlinePolicyFromPermissionSetCommandOutput extends DeleteInlinePolicyFromPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the inline policy from a specified permission set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteInlinePolicyFromPermissionSetCommandOutput extends Delete
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteInlinePolicyFromPermissionSetCommandInput - {@link DeleteInlinePolicyFromPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DeleteInlinePolicyFromPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DeleteInlinePolicyFromPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteInlinePolicyFromPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DeleteInlinePolicyFromPermissionSetCommandOutput extends Delete
|
|
|
57
64
|
export declare class DeleteInlinePolicyFromPermissionSetCommand extends $Command<DeleteInlinePolicyFromPermissionSetCommandInput, DeleteInlinePolicyFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: DeleteInlinePolicyFromPermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DeleteInlinePolicyFromPermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteInlinePolicyFromPermissionSetCommandInput, DeleteInlinePolicyFromPermissionSetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteInstanceAccessControlAttributeConfigurationRequest, DeleteInstanceAccessControlAttributeConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteInstanceAccessControlAttributeConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteInstanceAccessControlAttributeConfigurationCommandInput extends DeleteInstanceAccessControlAttributeConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteInstanceAccessControlAttributeConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput extends DeleteInstanceAccessControlAttributeConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables the attributes-based access control (ABAC) feature for the specified IAM Identity Center
|
|
18
23
|
* instance and deletes all of the attribute mappings that have been configured. Once deleted,
|
|
19
24
|
* any attributes that are received from an identity source and any custom attributes you have
|
|
@@ -28,6 +33,8 @@ export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteInstanceAccessControlAttributeConfigurationCommandInput - {@link DeleteInstanceAccessControlAttributeConfigurationCommandInput}
|
|
37
|
+
* @returns {@link DeleteInstanceAccessControlAttributeConfigurationCommandOutput}
|
|
31
38
|
* @see {@link DeleteInstanceAccessControlAttributeConfigurationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteInstanceAccessControlAttributeConfigurationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput
|
|
|
60
67
|
export declare class DeleteInstanceAccessControlAttributeConfigurationCommand extends $Command<DeleteInstanceAccessControlAttributeConfigurationCommandInput, DeleteInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
|
|
61
68
|
readonly input: DeleteInstanceAccessControlAttributeConfigurationCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DeleteInstanceAccessControlAttributeConfigurationCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteInstanceAccessControlAttributeConfigurationCommandInput, DeleteInstanceAccessControlAttributeConfigurationCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeletePermissionSetRequest, DeletePermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePermissionSetCommandInput extends DeletePermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePermissionSetCommandOutput extends DeletePermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified permission set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeletePermissionSetCommandOutput extends DeletePermissionSetRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePermissionSetCommandInput - {@link DeletePermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DeletePermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DeletePermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DeletePermissionSetCommandOutput extends DeletePermissionSetRes
|
|
|
57
64
|
export declare class DeletePermissionSetCommand extends $Command<DeletePermissionSetCommandInput, DeletePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: DeletePermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DeletePermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePermissionSetCommandInput, DeletePermissionSetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeletePermissionsBoundaryFromPermissionSetRequest, DeletePermissionsBoundaryFromPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePermissionsBoundaryFromPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePermissionsBoundaryFromPermissionSetCommandInput extends DeletePermissionsBoundaryFromPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePermissionsBoundaryFromPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput extends DeletePermissionsBoundaryFromPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the permissions boundary from a specified <a>PermissionSet</a>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput extends
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePermissionsBoundaryFromPermissionSetCommandInput - {@link DeletePermissionsBoundaryFromPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DeletePermissionsBoundaryFromPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DeletePermissionsBoundaryFromPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePermissionsBoundaryFromPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput extends
|
|
|
51
58
|
export declare class DeletePermissionsBoundaryFromPermissionSetCommand extends $Command<DeletePermissionsBoundaryFromPermissionSetCommandInput, DeletePermissionsBoundaryFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: DeletePermissionsBoundaryFromPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeletePermissionsBoundaryFromPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePermissionsBoundaryFromPermissionSetCommandInput, DeletePermissionsBoundaryFromPermissionSetCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeAccountAssignmentCreationStatusRequest, DescribeAccountAssignmentCreationStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAccountAssignmentCreationStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAccountAssignmentCreationStatusCommandInput extends DescribeAccountAssignmentCreationStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAccountAssignmentCreationStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAccountAssignmentCreationStatusCommandOutput extends DescribeAccountAssignmentCreationStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the status of the assignment creation request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAccountAssignmentCreationStatusCommandOutput extends De
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAccountAssignmentCreationStatusCommandInput - {@link DescribeAccountAssignmentCreationStatusCommandInput}
|
|
34
|
+
* @returns {@link DescribeAccountAssignmentCreationStatusCommandOutput}
|
|
28
35
|
* @see {@link DescribeAccountAssignmentCreationStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAccountAssignmentCreationStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeAccountAssignmentCreationStatusCommandOutput extends De
|
|
|
51
58
|
export declare class DescribeAccountAssignmentCreationStatusCommand extends $Command<DescribeAccountAssignmentCreationStatusCommandInput, DescribeAccountAssignmentCreationStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeAccountAssignmentCreationStatusCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeAccountAssignmentCreationStatusCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountAssignmentCreationStatusCommandInput, DescribeAccountAssignmentCreationStatusCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeAccountAssignmentDeletionStatusRequest, DescribeAccountAssignmentDeletionStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAccountAssignmentDeletionStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAccountAssignmentDeletionStatusCommandInput extends DescribeAccountAssignmentDeletionStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAccountAssignmentDeletionStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAccountAssignmentDeletionStatusCommandOutput extends DescribeAccountAssignmentDeletionStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the status of the assignment deletion request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAccountAssignmentDeletionStatusCommandOutput extends De
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAccountAssignmentDeletionStatusCommandInput - {@link DescribeAccountAssignmentDeletionStatusCommandInput}
|
|
34
|
+
* @returns {@link DescribeAccountAssignmentDeletionStatusCommandOutput}
|
|
28
35
|
* @see {@link DescribeAccountAssignmentDeletionStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAccountAssignmentDeletionStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeAccountAssignmentDeletionStatusCommandOutput extends De
|
|
|
51
58
|
export declare class DescribeAccountAssignmentDeletionStatusCommand extends $Command<DescribeAccountAssignmentDeletionStatusCommandInput, DescribeAccountAssignmentDeletionStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeAccountAssignmentDeletionStatusCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeAccountAssignmentDeletionStatusCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountAssignmentDeletionStatusCommandInput, DescribeAccountAssignmentDeletionStatusCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeInstanceAccessControlAttributeConfigurationRequest, DescribeInstanceAccessControlAttributeConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeInstanceAccessControlAttributeConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeInstanceAccessControlAttributeConfigurationCommandInput extends DescribeInstanceAccessControlAttributeConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeInstanceAccessControlAttributeConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutput extends DescribeInstanceAccessControlAttributeConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the list of IAM Identity Center identity store attributes that have been configured to work
|
|
18
23
|
* with attributes-based access control (ABAC) for the specified IAM Identity Center instance. This will not
|
|
19
24
|
* return attributes configured and sent by an external identity provider. For more information about ABAC, see <a href="/singlesignon/latest/userguide/abac.html">Attribute-Based Access Control</a> in the <i>IAM Identity Center User Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutpu
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeInstanceAccessControlAttributeConfigurationCommandInput - {@link DescribeInstanceAccessControlAttributeConfigurationCommandInput}
|
|
36
|
+
* @returns {@link DescribeInstanceAccessControlAttributeConfigurationCommandOutput}
|
|
30
37
|
* @see {@link DescribeInstanceAccessControlAttributeConfigurationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeInstanceAccessControlAttributeConfigurationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutpu
|
|
|
53
60
|
export declare class DescribeInstanceAccessControlAttributeConfigurationCommand extends $Command<DescribeInstanceAccessControlAttributeConfigurationCommandInput, DescribeInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeInstanceAccessControlAttributeConfigurationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeInstanceAccessControlAttributeConfigurationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInstanceAccessControlAttributeConfigurationCommandInput, DescribeInstanceAccessControlAttributeConfigurationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribePermissionSetRequest, DescribePermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribePermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribePermissionSetCommandInput extends DescribePermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribePermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribePermissionSetCommandOutput extends DescribePermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of the permission set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribePermissionSetCommandOutput extends DescribePermissionSe
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribePermissionSetCommandInput - {@link DescribePermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DescribePermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DescribePermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribePermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribePermissionSetCommandOutput extends DescribePermissionSe
|
|
|
51
58
|
export declare class DescribePermissionSetCommand extends $Command<DescribePermissionSetCommandInput, DescribePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribePermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribePermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePermissionSetCommandInput, DescribePermissionSetCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribePermissionSetProvisioningStatusRequest, DescribePermissionSetProvisioningStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribePermissionSetProvisioningStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribePermissionSetProvisioningStatusCommandInput extends DescribePermissionSetProvisioningStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribePermissionSetProvisioningStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribePermissionSetProvisioningStatusCommandOutput extends DescribePermissionSetProvisioningStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the status for the given permission set provisioning request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribePermissionSetProvisioningStatusCommandOutput extends De
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribePermissionSetProvisioningStatusCommandInput - {@link DescribePermissionSetProvisioningStatusCommandInput}
|
|
34
|
+
* @returns {@link DescribePermissionSetProvisioningStatusCommandOutput}
|
|
28
35
|
* @see {@link DescribePermissionSetProvisioningStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribePermissionSetProvisioningStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribePermissionSetProvisioningStatusCommandOutput extends De
|
|
|
51
58
|
export declare class DescribePermissionSetProvisioningStatusCommand extends $Command<DescribePermissionSetProvisioningStatusCommandInput, DescribePermissionSetProvisioningStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribePermissionSetProvisioningStatusCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribePermissionSetProvisioningStatusCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePermissionSetProvisioningStatusCommandInput, DescribePermissionSetProvisioningStatusCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
package/dist-types/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.d.ts
CHANGED
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetachCustomerManagedPolicyReferenceFromPermissionSetRequest, DetachCustomerManagedPolicyReferenceFromPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput extends DetachCustomerManagedPolicyReferenceFromPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput extends DetachCustomerManagedPolicyReferenceFromPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Detaches the specified customer managed policy from the specified <a>PermissionSet</a>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput - {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOut
|
|
|
57
64
|
export declare class DetachCustomerManagedPolicyReferenceFromPermissionSetCommand extends $Command<DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput, DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DetachCustomerManagedPolicyReferenceFromPermissionSetCommandInput, DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetachManagedPolicyFromPermissionSetRequest, DetachManagedPolicyFromPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DetachManagedPolicyFromPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DetachManagedPolicyFromPermissionSetCommandInput extends DetachManagedPolicyFromPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DetachManagedPolicyFromPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DetachManagedPolicyFromPermissionSetCommandOutput extends DetachManagedPolicyFromPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Detaches the attached AWS managed policy ARN from the specified permission set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DetachManagedPolicyFromPermissionSetCommandOutput extends Detac
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DetachManagedPolicyFromPermissionSetCommandInput - {@link DetachManagedPolicyFromPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link DetachManagedPolicyFromPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link DetachManagedPolicyFromPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DetachManagedPolicyFromPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DetachManagedPolicyFromPermissionSetCommandOutput extends Detac
|
|
|
57
64
|
export declare class DetachManagedPolicyFromPermissionSetCommand extends $Command<DetachManagedPolicyFromPermissionSetCommandInput, DetachManagedPolicyFromPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: DetachManagedPolicyFromPermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DetachManagedPolicyFromPermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DetachManagedPolicyFromPermissionSetCommandInput, DetachManagedPolicyFromPermissionSetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|