@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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags that are attached to a specified resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
51
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSOAdminClientResolvedConfig> {
|
|
52
59
|
readonly input: ListTagsForResourceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListTagsForResourceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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 { ProvisionPermissionSetRequest, ProvisionPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ProvisionPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ProvisionPermissionSetCommandInput extends ProvisionPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ProvisionPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ProvisionPermissionSetCommandOutput extends ProvisionPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The process by which a specified permission set is provisioned to the specified
|
|
18
23
|
* target.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ProvisionPermissionSetCommandOutput extends ProvisionPermission
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ProvisionPermissionSetCommandInput - {@link ProvisionPermissionSetCommandInput}
|
|
35
|
+
* @returns {@link ProvisionPermissionSetCommandOutput}
|
|
29
36
|
* @see {@link ProvisionPermissionSetCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ProvisionPermissionSetCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface ProvisionPermissionSetCommandOutput extends ProvisionPermission
|
|
|
58
65
|
export declare class ProvisionPermissionSetCommand extends $Command<ProvisionPermissionSetCommandInput, ProvisionPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
59
66
|
readonly input: ProvisionPermissionSetCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: ProvisionPermissionSetCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ProvisionPermissionSetCommandInput, ProvisionPermissionSetCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutInlinePolicyToPermissionSetRequest, PutInlinePolicyToPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutInlinePolicyToPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutInlinePolicyToPermissionSetCommandInput extends PutInlinePolicyToPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutInlinePolicyToPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutInlinePolicyToPermissionSetCommandOutput extends PutInlinePolicyToPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attaches an inline policy to a permission set.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>If the permission set is already referenced by one or more account assignments, you will
|
|
@@ -32,6 +37,8 @@ export interface PutInlinePolicyToPermissionSetCommandOutput extends PutInlinePo
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param PutInlinePolicyToPermissionSetCommandInput - {@link PutInlinePolicyToPermissionSetCommandInput}
|
|
41
|
+
* @returns {@link PutInlinePolicyToPermissionSetCommandOutput}
|
|
35
42
|
* @see {@link PutInlinePolicyToPermissionSetCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link PutInlinePolicyToPermissionSetCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface PutInlinePolicyToPermissionSetCommandOutput extends PutInlinePo
|
|
|
68
75
|
export declare class PutInlinePolicyToPermissionSetCommand extends $Command<PutInlinePolicyToPermissionSetCommandInput, PutInlinePolicyToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
69
76
|
readonly input: PutInlinePolicyToPermissionSetCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: PutInlinePolicyToPermissionSetCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutInlinePolicyToPermissionSetCommandInput, PutInlinePolicyToPermissionSetCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutPermissionsBoundaryToPermissionSetRequest, PutPermissionsBoundaryToPermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutPermissionsBoundaryToPermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutPermissionsBoundaryToPermissionSetCommandInput extends PutPermissionsBoundaryToPermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutPermissionsBoundaryToPermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutPermissionsBoundaryToPermissionSetCommandOutput extends PutPermissionsBoundaryToPermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attaches an AWS managed or customer managed policy to the specified <a>PermissionSet</a> as a permissions boundary.</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 PutPermissionsBoundaryToPermissionSetCommandOutput extends PutP
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutPermissionsBoundaryToPermissionSetCommandInput - {@link PutPermissionsBoundaryToPermissionSetCommandInput}
|
|
34
|
+
* @returns {@link PutPermissionsBoundaryToPermissionSetCommandOutput}
|
|
28
35
|
* @see {@link PutPermissionsBoundaryToPermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutPermissionsBoundaryToPermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface PutPermissionsBoundaryToPermissionSetCommandOutput extends PutP
|
|
|
57
64
|
export declare class PutPermissionsBoundaryToPermissionSetCommand extends $Command<PutPermissionsBoundaryToPermissionSetCommandInput, PutPermissionsBoundaryToPermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: PutPermissionsBoundaryToPermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: PutPermissionsBoundaryToPermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPermissionsBoundaryToPermissionSetCommandInput, PutPermissionsBoundaryToPermissionSetCommandOutput>;
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates a set of tags with a specified resource.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
61
68
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSOAdminClientResolvedConfig> {
|
|
62
69
|
readonly input: TagResourceCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: TagResourceCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates a set of tags from a specified resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
57
64
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: UntagResourceCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: UntagResourceCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateInstanceAccessControlAttributeConfigurationRequest, UpdateInstanceAccessControlAttributeConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateInstanceAccessControlAttributeConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateInstanceAccessControlAttributeConfigurationCommandInput extends UpdateInstanceAccessControlAttributeConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateInstanceAccessControlAttributeConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput extends UpdateInstanceAccessControlAttributeConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the IAM Identity Center identity store attributes that you can use with the IAM Identity Center instance
|
|
18
23
|
* for attributes-based access control (ABAC). When using an external identity provider as an
|
|
19
24
|
* identity source, you can pass attributes through the SAML assertion as an alternative to
|
|
@@ -30,6 +35,8 @@ export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param UpdateInstanceAccessControlAttributeConfigurationCommandInput - {@link UpdateInstanceAccessControlAttributeConfigurationCommandInput}
|
|
39
|
+
* @returns {@link UpdateInstanceAccessControlAttributeConfigurationCommandOutput}
|
|
33
40
|
* @see {@link UpdateInstanceAccessControlAttributeConfigurationCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link UpdateInstanceAccessControlAttributeConfigurationCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput
|
|
|
62
69
|
export declare class UpdateInstanceAccessControlAttributeConfigurationCommand extends $Command<UpdateInstanceAccessControlAttributeConfigurationCommandInput, UpdateInstanceAccessControlAttributeConfigurationCommandOutput, SSOAdminClientResolvedConfig> {
|
|
63
70
|
readonly input: UpdateInstanceAccessControlAttributeConfigurationCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: UpdateInstanceAccessControlAttributeConfigurationCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateInstanceAccessControlAttributeConfigurationCommandInput, UpdateInstanceAccessControlAttributeConfigurationCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdatePermissionSetRequest, UpdatePermissionSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdatePermissionSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdatePermissionSetCommandInput extends UpdatePermissionSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdatePermissionSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdatePermissionSetCommandOutput extends UpdatePermissionSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing 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 UpdatePermissionSetCommandOutput extends UpdatePermissionSetRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdatePermissionSetCommandInput - {@link UpdatePermissionSetCommandInput}
|
|
34
|
+
* @returns {@link UpdatePermissionSetCommandOutput}
|
|
28
35
|
* @see {@link UpdatePermissionSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdatePermissionSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSOAdminClientResolvedConfig | config} for SSOAdminClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface UpdatePermissionSetCommandOutput extends UpdatePermissionSetRes
|
|
|
57
64
|
export declare class UpdatePermissionSetCommand extends $Command<UpdatePermissionSetCommandInput, UpdatePermissionSetCommandOutput, SSOAdminClientResolvedConfig> {
|
|
58
65
|
readonly input: UpdatePermissionSetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: UpdatePermissionSetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOAdminClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePermissionSetCommandInput, UpdatePermissionSetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from SSOAdmin service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class SSOAdminServiceException extends __ServiceException {
|