@aws-sdk/client-rolesanywhere 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/RolesAnywhere.d.ts +27 -0
- package/dist-types/RolesAnywhereClient.d.ts +24 -4
- package/dist-types/commands/CreateProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateTrustAnchorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCrlCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTrustAnchorCommand.d.ts +16 -0
- package/dist-types/commands/DisableCrlCommand.d.ts +16 -0
- package/dist-types/commands/DisableProfileCommand.d.ts +16 -0
- package/dist-types/commands/DisableTrustAnchorCommand.d.ts +16 -0
- package/dist-types/commands/EnableCrlCommand.d.ts +16 -0
- package/dist-types/commands/EnableProfileCommand.d.ts +16 -0
- package/dist-types/commands/EnableTrustAnchorCommand.d.ts +16 -0
- package/dist-types/commands/GetCrlCommand.d.ts +16 -0
- package/dist-types/commands/GetProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetSubjectCommand.d.ts +16 -0
- package/dist-types/commands/GetTrustAnchorCommand.d.ts +16 -0
- package/dist-types/commands/ImportCrlCommand.d.ts +16 -0
- package/dist-types/commands/ListCrlsCommand.d.ts +16 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListSubjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTrustAnchorsCommand.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/UpdateCrlCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTrustAnchorCommand.d.ts +16 -0
- package/dist-types/models/RolesAnywhereServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +95 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCrlsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSubjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTrustAnchorsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListRequest, ListTrustAnchorsResponse } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTrustAnchorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTrustAnchorsCommandInput extends ListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTrustAnchorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the trust anchors in the authenticated account and Amazon Web Services Region.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse,
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListTrustAnchorsCommandInput - {@link ListTrustAnchorsCommandInput}
|
|
38
|
+
* @returns {@link ListTrustAnchorsCommandOutput}
|
|
32
39
|
* @see {@link ListTrustAnchorsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListTrustAnchorsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse,
|
|
|
44
51
|
export declare class ListTrustAnchorsCommand extends $Command<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
45
52
|
readonly input: ListTrustAnchorsCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListTrustAnchorsCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
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>Attaches tags to a resource.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
38
|
+
* @returns {@link TagResourceCommandOutput}
|
|
32
39
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
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>Removes tags from the resource.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
38
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
32
39
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
47
54
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
48
55
|
readonly input: UntagResourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UntagResourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CrlDetailResponse, UpdateCrlRequest } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCrlCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCrlCommandInput extends UpdateCrlRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCrlCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the certificate revocation list (CRL). CRl is a list of certificates that have been revoked by the issuing certificate Authority (CA). IAM Roles Anywhere validates against the crl list before issuing credentials.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBea
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateCrlCommandInput - {@link UpdateCrlCommandInput}
|
|
38
|
+
* @returns {@link UpdateCrlCommandOutput}
|
|
32
39
|
* @see {@link UpdateCrlCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateCrlCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBea
|
|
|
47
54
|
export declare class UpdateCrlCommand extends $Command<UpdateCrlCommandInput, UpdateCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateCrlCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateCrlCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCrlCommandInput, UpdateCrlCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ProfileDetailResponse, UpdateProfileRequest } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateProfileCommandInput extends UpdateProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the profile. A profile is configuration resource to list the roles that RolesAnywhere service is trusted to assume. In addition, by applying a profile you can scope-down permissions with IAM managed policies.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateProfileCommandInput - {@link UpdateProfileCommandInput}
|
|
38
|
+
* @returns {@link UpdateProfileCommandOutput}
|
|
32
39
|
* @see {@link UpdateProfileCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateProfileCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __Met
|
|
|
47
54
|
export declare class UpdateProfileCommand extends $Command<UpdateProfileCommandInput, UpdateProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateProfileCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateProfileCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfileCommandInput, UpdateProfileCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TrustAnchorDetailResponse, UpdateTrustAnchorRequest } from "../models/models_0";
|
|
5
5
|
import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateTrustAnchorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateTrustAnchorCommandInput extends UpdateTrustAnchorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateTrustAnchorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the trust anchor.You establish trust between IAM Roles Anywhere and your certificate authority (CA) by configuring a trust anchor. A Trust Anchor is defined either as a reference to a AWS Certificate Manager Private Certificate Authority (ACM PCA), or by uploading a Certificate Authority (CA) certificate. Your AWS workloads can authenticate with the trust anchor using certificates issued by the trusted Certificate Authority (CA) in exchange for temporary AWS credentials.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Required permissions: </b>
|
|
@@ -29,6 +34,8 @@ export interface UpdateTrustAnchorCommandOutput extends TrustAnchorDetailRespons
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateTrustAnchorCommandInput - {@link UpdateTrustAnchorCommandInput}
|
|
38
|
+
* @returns {@link UpdateTrustAnchorCommandOutput}
|
|
32
39
|
* @see {@link UpdateTrustAnchorCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateTrustAnchorCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link RolesAnywhereClientResolvedConfig | config} for RolesAnywhereClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateTrustAnchorCommandOutput extends TrustAnchorDetailRespons
|
|
|
47
54
|
export declare class UpdateTrustAnchorCommand extends $Command<UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateTrustAnchorCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateTrustAnchorCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -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 RolesAnywhere service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class RolesAnywhereServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywhereServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>A label that consists of a key and value you define. </p>
|
|
16
18
|
*/
|
|
17
19
|
export interface Tag {
|
|
@@ -24,6 +26,9 @@ export interface Tag {
|
|
|
24
26
|
*/
|
|
25
27
|
value: string | undefined;
|
|
26
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
27
32
|
export interface CreateProfileRequest {
|
|
28
33
|
/**
|
|
29
34
|
* <p>The name of the profile.</p>
|
|
@@ -59,6 +64,7 @@ export interface CreateProfileRequest {
|
|
|
59
64
|
tags?: Tag[];
|
|
60
65
|
}
|
|
61
66
|
/**
|
|
67
|
+
* @public
|
|
62
68
|
* <p>The state of the profile after a read or write operation.</p>
|
|
63
69
|
*/
|
|
64
70
|
export interface ProfileDetail {
|
|
@@ -111,6 +117,9 @@ export interface ProfileDetail {
|
|
|
111
117
|
*/
|
|
112
118
|
durationSeconds?: number;
|
|
113
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
114
123
|
export interface ProfileDetailResponse {
|
|
115
124
|
/**
|
|
116
125
|
* <p>The state of the profile after a read or write operation.</p>
|
|
@@ -118,6 +127,7 @@ export interface ProfileDetailResponse {
|
|
|
118
127
|
profile?: ProfileDetail;
|
|
119
128
|
}
|
|
120
129
|
/**
|
|
130
|
+
* @public
|
|
121
131
|
* <p>Validation exception error.</p>
|
|
122
132
|
*/
|
|
123
133
|
export declare class ValidationException extends __BaseException {
|
|
@@ -129,9 +139,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
129
139
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
130
140
|
}
|
|
131
141
|
/**
|
|
142
|
+
* @public
|
|
132
143
|
* <p>The data field of the trust anchor depending on its type. </p>
|
|
133
144
|
*/
|
|
134
145
|
export type SourceData = SourceData.AcmPcaArnMember | SourceData.X509CertificateDataMember | SourceData.$UnknownMember;
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
135
149
|
export declare namespace SourceData {
|
|
136
150
|
/**
|
|
137
151
|
* <p>The PEM-encoded data for the certificate anchor. Included for trust anchors of type <code>CERTIFICATE_BUNDLE</code>. </p>
|
|
@@ -161,12 +175,16 @@ export declare namespace SourceData {
|
|
|
161
175
|
}
|
|
162
176
|
const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
|
|
163
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
164
181
|
export declare enum TrustAnchorType {
|
|
165
182
|
AWS_ACM_PCA = "AWS_ACM_PCA",
|
|
166
183
|
CERTIFICATE_BUNDLE = "CERTIFICATE_BUNDLE",
|
|
167
184
|
SELF_SIGNED_REPOSITORY = "SELF_SIGNED_REPOSITORY"
|
|
168
185
|
}
|
|
169
186
|
/**
|
|
187
|
+
* @public
|
|
170
188
|
* <p>The trust anchor type and its related certificate data.</p>
|
|
171
189
|
*/
|
|
172
190
|
export interface Source {
|
|
@@ -179,6 +197,9 @@ export interface Source {
|
|
|
179
197
|
*/
|
|
180
198
|
sourceData?: SourceData;
|
|
181
199
|
}
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
182
203
|
export interface CreateTrustAnchorRequest {
|
|
183
204
|
/**
|
|
184
205
|
* <p>The name of the trust anchor.</p>
|
|
@@ -198,6 +219,7 @@ export interface CreateTrustAnchorRequest {
|
|
|
198
219
|
tags?: Tag[];
|
|
199
220
|
}
|
|
200
221
|
/**
|
|
222
|
+
* @public
|
|
201
223
|
* <p>The state of the trust anchor after a read or write operation. </p>
|
|
202
224
|
*/
|
|
203
225
|
export interface TrustAnchorDetail {
|
|
@@ -230,6 +252,9 @@ export interface TrustAnchorDetail {
|
|
|
230
252
|
*/
|
|
231
253
|
updatedAt?: Date;
|
|
232
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
*/
|
|
233
258
|
export interface TrustAnchorDetailResponse {
|
|
234
259
|
/**
|
|
235
260
|
* <p>The state of the trust anchor after a read or write operation. </p>
|
|
@@ -237,6 +262,7 @@ export interface TrustAnchorDetailResponse {
|
|
|
237
262
|
trustAnchor: TrustAnchorDetail | undefined;
|
|
238
263
|
}
|
|
239
264
|
/**
|
|
265
|
+
* @public
|
|
240
266
|
* <p>A record of a presented X509 credential to <a href="https://docs.aws.amazon.com/rolesanywhere/latest/APIReference/API_CreateSession.html">CreateSession</a>. </p>
|
|
241
267
|
*/
|
|
242
268
|
export interface CredentialSummary {
|
|
@@ -266,6 +292,7 @@ export interface CredentialSummary {
|
|
|
266
292
|
failed?: boolean;
|
|
267
293
|
}
|
|
268
294
|
/**
|
|
295
|
+
* @public
|
|
269
296
|
* <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
|
|
270
297
|
*/
|
|
271
298
|
export interface CrlDetail {
|
|
@@ -302,6 +329,9 @@ export interface CrlDetail {
|
|
|
302
329
|
*/
|
|
303
330
|
updatedAt?: Date;
|
|
304
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
305
335
|
export interface CrlDetailResponse {
|
|
306
336
|
/**
|
|
307
337
|
* <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
|
|
@@ -309,6 +339,7 @@ export interface CrlDetailResponse {
|
|
|
309
339
|
crl: CrlDetail | undefined;
|
|
310
340
|
}
|
|
311
341
|
/**
|
|
342
|
+
* @public
|
|
312
343
|
* <p>The resource could not be found.</p>
|
|
313
344
|
*/
|
|
314
345
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -319,12 +350,18 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
319
350
|
*/
|
|
320
351
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
321
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
322
356
|
export interface ScalarCrlRequest {
|
|
323
357
|
/**
|
|
324
358
|
* <p>The unique identifier of the certificate revocation list (CRL).</p>
|
|
325
359
|
*/
|
|
326
360
|
crlId: string | undefined;
|
|
327
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
328
365
|
export interface ImportCrlRequest {
|
|
329
366
|
/**
|
|
330
367
|
* <p>The name of the certificate revocation list (CRL).</p>
|
|
@@ -347,6 +384,9 @@ export interface ImportCrlRequest {
|
|
|
347
384
|
*/
|
|
348
385
|
trustAnchorArn: string | undefined;
|
|
349
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
350
390
|
export interface ListCrlsResponse {
|
|
351
391
|
/**
|
|
352
392
|
* <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
|
|
@@ -357,6 +397,9 @@ export interface ListCrlsResponse {
|
|
|
357
397
|
*/
|
|
358
398
|
crls?: CrlDetail[];
|
|
359
399
|
}
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
360
403
|
export interface ListRequest {
|
|
361
404
|
/**
|
|
362
405
|
* <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
|
|
@@ -367,6 +410,9 @@ export interface ListRequest {
|
|
|
367
410
|
*/
|
|
368
411
|
pageSize?: number;
|
|
369
412
|
}
|
|
413
|
+
/**
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
370
416
|
export interface UpdateCrlRequest {
|
|
371
417
|
/**
|
|
372
418
|
* <p>The unique identifier of the certificate revocation list (CRL).</p>
|
|
@@ -381,18 +427,27 @@ export interface UpdateCrlRequest {
|
|
|
381
427
|
*/
|
|
382
428
|
crlData?: Uint8Array;
|
|
383
429
|
}
|
|
430
|
+
/**
|
|
431
|
+
* @public
|
|
432
|
+
*/
|
|
384
433
|
export interface ScalarProfileRequest {
|
|
385
434
|
/**
|
|
386
435
|
* <p>The unique identifier of the profile.</p>
|
|
387
436
|
*/
|
|
388
437
|
profileId: string | undefined;
|
|
389
438
|
}
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
390
442
|
export interface ScalarTrustAnchorRequest {
|
|
391
443
|
/**
|
|
392
444
|
* <p>The unique identifier of the trust anchor.</p>
|
|
393
445
|
*/
|
|
394
446
|
trustAnchorId: string | undefined;
|
|
395
447
|
}
|
|
448
|
+
/**
|
|
449
|
+
* @public
|
|
450
|
+
*/
|
|
396
451
|
export interface ScalarSubjectRequest {
|
|
397
452
|
/**
|
|
398
453
|
* <p>The unique identifier of the subject. </p>
|
|
@@ -400,6 +455,7 @@ export interface ScalarSubjectRequest {
|
|
|
400
455
|
subjectId: string | undefined;
|
|
401
456
|
}
|
|
402
457
|
/**
|
|
458
|
+
* @public
|
|
403
459
|
* <p>A key-value pair you set that identifies a property of the authenticating instance.</p>
|
|
404
460
|
*/
|
|
405
461
|
export interface InstanceProperty {
|
|
@@ -417,6 +473,7 @@ export interface InstanceProperty {
|
|
|
417
473
|
failed?: boolean;
|
|
418
474
|
}
|
|
419
475
|
/**
|
|
476
|
+
* @public
|
|
420
477
|
* <p>The state of the subject after a read or write operation.</p>
|
|
421
478
|
*/
|
|
422
479
|
export interface SubjectDetail {
|
|
@@ -457,12 +514,18 @@ export interface SubjectDetail {
|
|
|
457
514
|
*/
|
|
458
515
|
instanceProperties?: InstanceProperty[];
|
|
459
516
|
}
|
|
517
|
+
/**
|
|
518
|
+
* @public
|
|
519
|
+
*/
|
|
460
520
|
export interface SubjectDetailResponse {
|
|
461
521
|
/**
|
|
462
522
|
* <p>The state of the subject after a read or write operation.</p>
|
|
463
523
|
*/
|
|
464
524
|
subject?: SubjectDetail;
|
|
465
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* @public
|
|
528
|
+
*/
|
|
466
529
|
export interface ListProfilesResponse {
|
|
467
530
|
/**
|
|
468
531
|
* <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
|
|
@@ -474,6 +537,7 @@ export interface ListProfilesResponse {
|
|
|
474
537
|
profiles?: ProfileDetail[];
|
|
475
538
|
}
|
|
476
539
|
/**
|
|
540
|
+
* @public
|
|
477
541
|
* <p>A summary representation of Subject resources returned in read operations; primarily ListSubjects.</p>
|
|
478
542
|
*/
|
|
479
543
|
export interface SubjectSummary {
|
|
@@ -506,6 +570,9 @@ export interface SubjectSummary {
|
|
|
506
570
|
*/
|
|
507
571
|
updatedAt?: Date;
|
|
508
572
|
}
|
|
573
|
+
/**
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
509
576
|
export interface ListSubjectsResponse {
|
|
510
577
|
/**
|
|
511
578
|
* <p>A list of subjects.</p>
|
|
@@ -516,18 +583,27 @@ export interface ListSubjectsResponse {
|
|
|
516
583
|
*/
|
|
517
584
|
nextToken?: string;
|
|
518
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
519
589
|
export interface ListTagsForResourceRequest {
|
|
520
590
|
/**
|
|
521
591
|
* <p>The ARN of the resource.</p>
|
|
522
592
|
*/
|
|
523
593
|
resourceArn: string | undefined;
|
|
524
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
525
598
|
export interface ListTagsForResourceResponse {
|
|
526
599
|
/**
|
|
527
600
|
* <p>A list of tags attached to the resource.</p>
|
|
528
601
|
*/
|
|
529
602
|
tags?: Tag[];
|
|
530
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* @public
|
|
606
|
+
*/
|
|
531
607
|
export interface ListTrustAnchorsResponse {
|
|
532
608
|
/**
|
|
533
609
|
* <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
|
|
@@ -538,6 +614,9 @@ export interface ListTrustAnchorsResponse {
|
|
|
538
614
|
*/
|
|
539
615
|
trustAnchors?: TrustAnchorDetail[];
|
|
540
616
|
}
|
|
617
|
+
/**
|
|
618
|
+
* @public
|
|
619
|
+
*/
|
|
541
620
|
export interface UpdateProfileRequest {
|
|
542
621
|
/**
|
|
543
622
|
* <p>The unique identifier of the profile.</p>
|
|
@@ -564,6 +643,9 @@ export interface UpdateProfileRequest {
|
|
|
564
643
|
*/
|
|
565
644
|
durationSeconds?: number;
|
|
566
645
|
}
|
|
646
|
+
/**
|
|
647
|
+
* @public
|
|
648
|
+
*/
|
|
567
649
|
export interface TagResourceRequest {
|
|
568
650
|
/**
|
|
569
651
|
* <p>The ARN of the resource.</p>
|
|
@@ -574,9 +656,13 @@ export interface TagResourceRequest {
|
|
|
574
656
|
*/
|
|
575
657
|
tags: Tag[] | undefined;
|
|
576
658
|
}
|
|
659
|
+
/**
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
577
662
|
export interface TagResourceResponse {
|
|
578
663
|
}
|
|
579
664
|
/**
|
|
665
|
+
* @public
|
|
580
666
|
* <p>Too many tags.</p>
|
|
581
667
|
*/
|
|
582
668
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -587,6 +673,9 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
587
673
|
*/
|
|
588
674
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
589
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
590
679
|
export interface UpdateTrustAnchorRequest {
|
|
591
680
|
/**
|
|
592
681
|
* <p>The unique identifier of the trust anchor.</p>
|
|
@@ -601,6 +690,9 @@ export interface UpdateTrustAnchorRequest {
|
|
|
601
690
|
*/
|
|
602
691
|
source?: Source;
|
|
603
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
604
696
|
export interface UntagResourceRequest {
|
|
605
697
|
/**
|
|
606
698
|
* <p>The ARN of the resource.</p>
|
|
@@ -611,6 +703,9 @@ export interface UntagResourceRequest {
|
|
|
611
703
|
*/
|
|
612
704
|
tagKeys: string[] | undefined;
|
|
613
705
|
}
|
|
706
|
+
/**
|
|
707
|
+
* @public
|
|
708
|
+
*/
|
|
614
709
|
export interface UntagResourceResponse {
|
|
615
710
|
}
|
|
616
711
|
/**
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { RolesAnywhereClient } from "../RolesAnywhereClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface RolesAnywherePaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: RolesAnywhereClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand";
|
|
3
3
|
import { RolesAnywherePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListCrls(config: RolesAnywherePaginationConfiguration, input: ListCrlsCommandInput, ...additionalArguments: any): Paginator<ListCrlsCommandOutput>;
|