@aws-sdk/client-sso-admin 3.295.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 +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetInlinePolicyForPermissionSetRequest, GetInlinePolicyForPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetInlinePolicyForPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetInlinePolicyForPermissionSetCommandInput extends GetInlinePolicyForPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetInlinePolicyForPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetInlinePolicyForPermissionSetCommandOutput extends GetInlinePolicyForPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Obtains the inline policy assigned to 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 GetInlinePolicyForPermissionSetCommandOutput extends GetInlineP
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetInlinePolicyForPermissionSetCommandInput - {@link GetInlinePolicyForPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link GetInlinePolicyForPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link GetInlinePolicyForPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetInlinePolicyForPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetInlinePolicyForPermissionSetCommandOutput extends GetInlineP
|
|
|
51
58
|
export declare class GetInlinePolicyForPermissionSetCommand extends $Command<GetInlinePolicyForPermissionSetCommandInput, GetInlinePolicyForPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: GetInlinePolicyForPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetInlinePolicyForPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInlinePolicyForPermissionSetCommandInput, GetInlinePolicyForPermissionSetCommandOutput>;
|
|
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 { GetPermissionsBoundaryForPermissionSetRequest, GetPermissionsBoundaryForPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPermissionsBoundaryForPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPermissionsBoundaryForPermissionSetCommandInput extends GetPermissionsBoundaryForPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPermissionsBoundaryForPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPermissionsBoundaryForPermissionSetCommandOutput extends GetPermissionsBoundaryForPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Obtains the permissions boundary for 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 GetPermissionsBoundaryForPermissionSetCommandOutput extends Get
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPermissionsBoundaryForPermissionSetCommandInput - {@link GetPermissionsBoundaryForPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link GetPermissionsBoundaryForPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link GetPermissionsBoundaryForPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPermissionsBoundaryForPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetPermissionsBoundaryForPermissionSetCommandOutput extends Get
|
|
|
51
58
|
export declare class GetPermissionsBoundaryForPermissionSetCommand extends $Command<GetPermissionsBoundaryForPermissionSetCommandInput, GetPermissionsBoundaryForPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: GetPermissionsBoundaryForPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetPermissionsBoundaryForPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPermissionsBoundaryForPermissionSetCommandInput, GetPermissionsBoundaryForPermissionSetCommandOutput>;
|
|
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 { ListAccountAssignmentCreationStatusRequest, ListAccountAssignmentCreationStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccountAssignmentCreationStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccountAssignmentCreationStatusCommandInput extends ListAccountAssignmentCreationStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccountAssignmentCreationStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccountAssignmentCreationStatusCommandOutput extends ListAccountAssignmentCreationStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the status of the AWS account assignment creation requests for a specified IAM Identity Center
|
|
18
23
|
* instance.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListAccountAssignmentCreationStatusCommandOutput extends ListAc
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListAccountAssignmentCreationStatusCommandInput - {@link ListAccountAssignmentCreationStatusCommandInput}
|
|
35
|
+
* @returns {@link ListAccountAssignmentCreationStatusCommandOutput}
|
|
29
36
|
* @see {@link ListAccountAssignmentCreationStatusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListAccountAssignmentCreationStatusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListAccountAssignmentCreationStatusCommandOutput extends ListAc
|
|
|
52
59
|
export declare class ListAccountAssignmentCreationStatusCommand extends $Command<ListAccountAssignmentCreationStatusCommandInput, ListAccountAssignmentCreationStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
53
60
|
readonly input: ListAccountAssignmentCreationStatusCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListAccountAssignmentCreationStatusCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountAssignmentCreationStatusCommandInput, ListAccountAssignmentCreationStatusCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAccountAssignmentDeletionStatusRequest, ListAccountAssignmentDeletionStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccountAssignmentDeletionStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccountAssignmentDeletionStatusCommandInput extends ListAccountAssignmentDeletionStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccountAssignmentDeletionStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccountAssignmentDeletionStatusCommandOutput extends ListAccountAssignmentDeletionStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the status of the AWS account assignment deletion requests for a specified IAM Identity Center
|
|
18
23
|
* instance.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListAccountAssignmentDeletionStatusCommandOutput extends ListAc
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListAccountAssignmentDeletionStatusCommandInput - {@link ListAccountAssignmentDeletionStatusCommandInput}
|
|
35
|
+
* @returns {@link ListAccountAssignmentDeletionStatusCommandOutput}
|
|
29
36
|
* @see {@link ListAccountAssignmentDeletionStatusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListAccountAssignmentDeletionStatusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListAccountAssignmentDeletionStatusCommandOutput extends ListAc
|
|
|
52
59
|
export declare class ListAccountAssignmentDeletionStatusCommand extends $Command<ListAccountAssignmentDeletionStatusCommandInput, ListAccountAssignmentDeletionStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
53
60
|
readonly input: ListAccountAssignmentDeletionStatusCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListAccountAssignmentDeletionStatusCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountAssignmentDeletionStatusCommandInput, ListAccountAssignmentDeletionStatusCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAccountAssignmentsRequest, ListAccountAssignmentsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccountAssignmentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccountAssignmentsCommandInput extends ListAccountAssignmentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccountAssignmentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccountAssignmentsCommandOutput extends ListAccountAssignmentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the assignee of the specified AWS account with 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 ListAccountAssignmentsCommandOutput extends ListAccountAssignme
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAccountAssignmentsCommandInput - {@link ListAccountAssignmentsCommandInput}
|
|
34
|
+
* @returns {@link ListAccountAssignmentsCommandOutput}
|
|
28
35
|
* @see {@link ListAccountAssignmentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAccountAssignmentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListAccountAssignmentsCommandOutput extends ListAccountAssignme
|
|
|
51
58
|
export declare class ListAccountAssignmentsCommand extends $Command<ListAccountAssignmentsCommandInput, ListAccountAssignmentsCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListAccountAssignmentsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListAccountAssignmentsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountAssignmentsCommandInput, ListAccountAssignmentsCommandOutput>;
|
|
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 { ListAccountsForProvisionedPermissionSetRequest, ListAccountsForProvisionedPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAccountsForProvisionedPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAccountsForProvisionedPermissionSetCommandInput extends ListAccountsForProvisionedPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAccountsForProvisionedPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAccountsForProvisionedPermissionSetCommandOutput extends ListAccountsForProvisionedPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the AWS accounts where the specified permission set is provisioned.</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 ListAccountsForProvisionedPermissionSetCommandOutput extends Li
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAccountsForProvisionedPermissionSetCommandInput - {@link ListAccountsForProvisionedPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link ListAccountsForProvisionedPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link ListAccountsForProvisionedPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAccountsForProvisionedPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListAccountsForProvisionedPermissionSetCommandOutput extends Li
|
|
|
51
58
|
export declare class ListAccountsForProvisionedPermissionSetCommand extends $Command<ListAccountsForProvisionedPermissionSetCommandInput, ListAccountsForProvisionedPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListAccountsForProvisionedPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListAccountsForProvisionedPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountsForProvisionedPermissionSetCommandInput, ListAccountsForProvisionedPermissionSetCommandOutput>;
|
|
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 { ListCustomerManagedPolicyReferencesInPermissionSetRequest, ListCustomerManagedPolicyReferencesInPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomerManagedPolicyReferencesInPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandInput extends ListCustomerManagedPolicyReferencesInPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomerManagedPolicyReferencesInPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput extends ListCustomerManagedPolicyReferencesInPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all customer managed policies attached to 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 ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCustomerManagedPolicyReferencesInPermissionSetCommandInput - {@link ListCustomerManagedPolicyReferencesInPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link ListCustomerManagedPolicyReferencesInPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput
|
|
|
51
58
|
export declare class ListCustomerManagedPolicyReferencesInPermissionSetCommand extends $Command<ListCustomerManagedPolicyReferencesInPermissionSetCommandInput, ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListCustomerManagedPolicyReferencesInPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListCustomerManagedPolicyReferencesInPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomerManagedPolicyReferencesInPermissionSetCommandInput, ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput>;
|
|
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 { ListInstancesRequest, ListInstancesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInstancesCommandInput extends ListInstancesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInstancesCommandOutput extends ListInstancesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the IAM Identity Center instances that the caller has access to.</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 ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListInstancesCommandInput - {@link ListInstancesCommandInput}
|
|
34
|
+
* @returns {@link ListInstancesCommandOutput}
|
|
28
35
|
* @see {@link ListInstancesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListInstancesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
48
55
|
export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, SSOAdminClientResolvedConfig> {
|
|
49
56
|
readonly input: ListInstancesCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListInstancesCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListManagedPoliciesInPermissionSetRequest, ListManagedPoliciesInPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListManagedPoliciesInPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListManagedPoliciesInPermissionSetCommandInput extends ListManagedPoliciesInPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListManagedPoliciesInPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListManagedPoliciesInPermissionSetCommandOutput extends ListManagedPoliciesInPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the AWS managed policy that is attached to 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 ListManagedPoliciesInPermissionSetCommandOutput extends ListMan
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListManagedPoliciesInPermissionSetCommandInput - {@link ListManagedPoliciesInPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link ListManagedPoliciesInPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link ListManagedPoliciesInPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListManagedPoliciesInPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListManagedPoliciesInPermissionSetCommandOutput extends ListMan
|
|
|
51
58
|
export declare class ListManagedPoliciesInPermissionSetCommand extends $Command<ListManagedPoliciesInPermissionSetCommandInput, ListManagedPoliciesInPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListManagedPoliciesInPermissionSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListManagedPoliciesInPermissionSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListManagedPoliciesInPermissionSetCommandInput, ListManagedPoliciesInPermissionSetCommandOutput>;
|
|
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 { ListPermissionSetProvisioningStatusRequest, ListPermissionSetProvisioningStatusResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPermissionSetProvisioningStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPermissionSetProvisioningStatusCommandInput extends ListPermissionSetProvisioningStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPermissionSetProvisioningStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPermissionSetProvisioningStatusCommandOutput extends ListPermissionSetProvisioningStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the status of the permission set provisioning requests for a specified IAM Identity Center
|
|
18
23
|
* instance.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListPermissionSetProvisioningStatusCommandOutput extends ListPe
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListPermissionSetProvisioningStatusCommandInput - {@link ListPermissionSetProvisioningStatusCommandInput}
|
|
35
|
+
* @returns {@link ListPermissionSetProvisioningStatusCommandOutput}
|
|
29
36
|
* @see {@link ListPermissionSetProvisioningStatusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListPermissionSetProvisioningStatusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListPermissionSetProvisioningStatusCommandOutput extends ListPe
|
|
|
52
59
|
export declare class ListPermissionSetProvisioningStatusCommand extends $Command<ListPermissionSetProvisioningStatusCommandInput, ListPermissionSetProvisioningStatusCommandOutput, SSOAdminClientResolvedConfig> {
|
|
53
60
|
readonly input: ListPermissionSetProvisioningStatusCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListPermissionSetProvisioningStatusCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionSetProvisioningStatusCommandInput, ListPermissionSetProvisioningStatusCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPermissionSetsRequest, ListPermissionSetsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPermissionSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPermissionSetsCommandInput extends ListPermissionSetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPermissionSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPermissionSetsCommandOutput extends ListPermissionSetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the <a>PermissionSet</a>s in an IAM Identity Center instance.</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 ListPermissionSetsCommandOutput extends ListPermissionSetsRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPermissionSetsCommandInput - {@link ListPermissionSetsCommandInput}
|
|
34
|
+
* @returns {@link ListPermissionSetsCommandOutput}
|
|
28
35
|
* @see {@link ListPermissionSetsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPermissionSetsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListPermissionSetsCommandOutput extends ListPermissionSetsRespo
|
|
|
51
58
|
export declare class ListPermissionSetsCommand extends $Command<ListPermissionSetsCommandInput, ListPermissionSetsCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListPermissionSetsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListPermissionSetsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionSetsCommandInput, ListPermissionSetsCommandOutput>;
|
|
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 { ListPermissionSetsProvisionedToAccountRequest, ListPermissionSetsProvisionedToAccountResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPermissionSetsProvisionedToAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPermissionSetsProvisionedToAccountCommandInput extends ListPermissionSetsProvisionedToAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPermissionSetsProvisionedToAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPermissionSetsProvisionedToAccountCommandOutput extends ListPermissionSetsProvisionedToAccountResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the permission sets that are provisioned to a specified AWS account.</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 ListPermissionSetsProvisionedToAccountCommandOutput extends Lis
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPermissionSetsProvisionedToAccountCommandInput - {@link ListPermissionSetsProvisionedToAccountCommandInput}
|
|
34
|
+
* @returns {@link ListPermissionSetsProvisionedToAccountCommandOutput}
|
|
28
35
|
* @see {@link ListPermissionSetsProvisionedToAccountCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPermissionSetsProvisionedToAccountCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListPermissionSetsProvisionedToAccountCommandOutput extends Lis
|
|
|
51
58
|
export declare class ListPermissionSetsProvisionedToAccountCommand extends $Command<ListPermissionSetsProvisionedToAccountCommandInput, ListPermissionSetsProvisionedToAccountCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListPermissionSetsProvisionedToAccountCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListPermissionSetsProvisionedToAccountCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionSetsProvisionedToAccountCommandInput, ListPermissionSetsProvisionedToAccountCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|