@aws-sdk/client-acm-pca 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/ACMPCA.d.ts +24 -0
- package/dist-types/ACMPCAClient.d.ts +24 -4
- package/dist-types/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +16 -0
- package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/CreatePermissionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionCommand.d.ts +16 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/GetCertificateAuthorityCertificateCommand.d.ts +16 -0
- package/dist-types/commands/GetCertificateAuthorityCsrCommand.d.ts +16 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +16 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
- package/dist-types/commands/ImportCertificateAuthorityCertificateCommand.d.ts +16 -0
- package/dist-types/commands/IssueCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ListCertificateAuthoritiesCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsCommand.d.ts +16 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
- package/dist-types/commands/RestoreCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +16 -0
- package/dist-types/commands/TagCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/UntagCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCertificateAuthorityCommand.d.ts +16 -0
- package/dist-types/models/ACMPCAServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +199 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCertificateAuthoritiesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
5
5
|
import { RevokeCertificateRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RevokeCertificateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RevokeCertificateCommandInput extends RevokeCertificateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RevokeCertificateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RevokeCertificateCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Revokes a certificate that was issued inside Amazon Web Services Private CA. If you enable a certificate
|
|
18
23
|
* revocation list (CRL) when you create or update your private CA, information about the
|
|
19
24
|
* revoked certificates will be included in the CRL. Amazon Web Services Private CA writes the CRL to an S3
|
|
@@ -44,6 +49,8 @@ export interface RevokeCertificateCommandOutput extends __MetadataBearer {
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param RevokeCertificateCommandInput - {@link RevokeCertificateCommandInput}
|
|
53
|
+
* @returns {@link RevokeCertificateCommandOutput}
|
|
47
54
|
* @see {@link RevokeCertificateCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link RevokeCertificateCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link ACMPCAClientResolvedConfig | config} for ACMPCAClient's `config` shape.
|
|
@@ -83,11 +90,20 @@ export interface RevokeCertificateCommandOutput extends __MetadataBearer {
|
|
|
83
90
|
export declare class RevokeCertificateCommand extends $Command<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMPCAClientResolvedConfig> {
|
|
84
91
|
readonly input: RevokeCertificateCommandInput;
|
|
85
92
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
86
96
|
constructor(input: RevokeCertificateCommandInput);
|
|
87
97
|
/**
|
|
88
98
|
* @internal
|
|
89
99
|
*/
|
|
90
100
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeCertificateCommandInput, RevokeCertificateCommandOutput>;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
91
104
|
private serialize;
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
92
108
|
private deserialize;
|
|
93
109
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
5
5
|
import { TagCertificateAuthorityRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagCertificateAuthorityCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagCertificateAuthorityCommandInput extends TagCertificateAuthorityRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagCertificateAuthorityCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds one or more tags to your private CA. Tags are labels that you can use to identify
|
|
18
23
|
* and organize your Amazon Web Services resources. Each tag consists of a key and an optional value. You
|
|
19
24
|
* specify the private CA on input by its Amazon Resource Name (ARN). You specify the tag
|
|
@@ -39,6 +44,8 @@ export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param TagCertificateAuthorityCommandInput - {@link TagCertificateAuthorityCommandInput}
|
|
48
|
+
* @returns {@link TagCertificateAuthorityCommandOutput}
|
|
42
49
|
* @see {@link TagCertificateAuthorityCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link TagCertificateAuthorityCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link ACMPCAClientResolvedConfig | config} for ACMPCAClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
|
67
74
|
export declare class TagCertificateAuthorityCommand extends $Command<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
68
75
|
readonly input: TagCertificateAuthorityCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: TagCertificateAuthorityCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
5
5
|
import { UntagCertificateAuthorityRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagCertificateAuthorityCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagCertificateAuthorityCommandInput extends UntagCertificateAuthorityRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagCertificateAuthorityCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Remove one or more tags from your private CA. A tag consists of a key-value pair. If
|
|
18
23
|
* you do not specify the value portion of the tag when calling this action, the tag will
|
|
19
24
|
* be removed regardless of value. If you specify a value, the tag is removed only if it is
|
|
@@ -29,6 +34,8 @@ export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UntagCertificateAuthorityCommandInput - {@link UntagCertificateAuthorityCommandInput}
|
|
38
|
+
* @returns {@link UntagCertificateAuthorityCommandOutput}
|
|
32
39
|
* @see {@link UntagCertificateAuthorityCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UntagCertificateAuthorityCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ACMPCAClientResolvedConfig | config} for ACMPCAClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer
|
|
|
53
60
|
export declare class UntagCertificateAuthorityCommand extends $Command<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
54
61
|
readonly input: UntagCertificateAuthorityCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UntagCertificateAuthorityCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
5
5
|
import { UpdateCertificateAuthorityRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCertificateAuthorityCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCertificateAuthorityCommandInput extends UpdateCertificateAuthorityRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCertificateAuthorityCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the status or configuration of a private certificate authority (CA). Your
|
|
18
23
|
* private CA must be in the <code>ACTIVE</code> or <code>DISABLED</code> state before you
|
|
19
24
|
* can update it. You can disable a private CA that is in the <code>ACTIVE</code> state or
|
|
@@ -35,6 +40,8 @@ export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBeare
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param UpdateCertificateAuthorityCommandInput - {@link UpdateCertificateAuthorityCommandInput}
|
|
44
|
+
* @returns {@link UpdateCertificateAuthorityCommandOutput}
|
|
38
45
|
* @see {@link UpdateCertificateAuthorityCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link UpdateCertificateAuthorityCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link ACMPCAClientResolvedConfig | config} for ACMPCAClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBeare
|
|
|
65
72
|
export declare class UpdateCertificateAuthorityCommand extends $Command<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
66
73
|
readonly input: UpdateCertificateAuthorityCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: UpdateCertificateAuthorityCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -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 ACMPCA service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ACMPCAServiceException extends __ServiceException {
|