@aws-sdk/client-acm-pca 3.169.0 → 3.170.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ACMPCA.d.ts +442 -120
  3. package/dist-types/ts3.4/ACMPCAClient.d.ts +267 -96
  4. package/dist-types/ts3.4/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetCertificateAuthorityCertificateCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/GetCertificateAuthorityCsrCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ImportCertificateAuthorityCertificateCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/IssueCertificateCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/RestoreCertificateAuthorityCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +33 -17
  24. package/dist-types/ts3.4/commands/TagCertificateAuthorityCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/UntagCertificateAuthorityCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateCertificateAuthorityCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +7 -7
  30. package/dist-types/ts3.4/models/ACMPCAServiceException.d.ts +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +933 -847
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  34. package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  38. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  43. package/dist-types/ts3.4/waiters/index.d.ts +3 -3
  44. package/dist-types/ts3.4/waiters/waitForAuditReportCreated.d.ts +13 -7
  45. package/dist-types/ts3.4/waiters/waitForCertificateAuthorityCSRCreated.d.ts +13 -7
  46. package/dist-types/ts3.4/waiters/waitForCertificateIssued.d.ts +13 -7
  47. package/package.json +35 -35
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
5
- export interface ListTagsCommandInput extends ListTagsRequest {
6
- }
7
- export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: ListTagsCommandInput;
12
- constructor(input: ListTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
14
+ export interface ListTagsCommandInput extends ListTagsRequest {}
15
+ export interface ListTagsCommandOutput
16
+ extends ListTagsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListTagsCommand extends $Command<
20
+ ListTagsCommandInput,
21
+ ListTagsCommandOutput,
22
+ ACMPCAClientResolvedConfig
23
+ > {
24
+ readonly input: ListTagsCommandInput;
25
+ constructor(input: ListTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMPCAClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { PutPolicyRequest } from "../models/models_0";
5
- export interface PutPolicyCommandInput extends PutPolicyRequest {
6
- }
7
- export interface PutPolicyCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class PutPolicyCommand extends $Command<PutPolicyCommandInput, PutPolicyCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: PutPolicyCommandInput;
12
- constructor(input: PutPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { PutPolicyRequest } from "../models/models_0";
14
+ export interface PutPolicyCommandInput extends PutPolicyRequest {}
15
+ export interface PutPolicyCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class PutPolicyCommand extends $Command<
18
+ PutPolicyCommandInput,
19
+ PutPolicyCommandOutput,
20
+ ACMPCAClientResolvedConfig
21
+ > {
22
+ readonly input: PutPolicyCommandInput;
23
+ constructor(input: PutPolicyCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMPCAClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { RestoreCertificateAuthorityRequest } from "../models/models_0";
5
- export interface RestoreCertificateAuthorityCommandInput extends RestoreCertificateAuthorityRequest {
6
- }
7
- export interface RestoreCertificateAuthorityCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RestoreCertificateAuthorityCommand extends $Command<RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: RestoreCertificateAuthorityCommandInput;
12
- constructor(input: RestoreCertificateAuthorityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { RestoreCertificateAuthorityRequest } from "../models/models_0";
14
+ export interface RestoreCertificateAuthorityCommandInput
15
+ extends RestoreCertificateAuthorityRequest {}
16
+ export interface RestoreCertificateAuthorityCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class RestoreCertificateAuthorityCommand extends $Command<
20
+ RestoreCertificateAuthorityCommandInput,
21
+ RestoreCertificateAuthorityCommandOutput,
22
+ ACMPCAClientResolvedConfig
23
+ > {
24
+ readonly input: RestoreCertificateAuthorityCommandInput;
25
+ constructor(input: RestoreCertificateAuthorityCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMPCAClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ RestoreCertificateAuthorityCommandInput,
33
+ RestoreCertificateAuthorityCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { RevokeCertificateRequest } from "../models/models_0";
5
- export interface RevokeCertificateCommandInput extends RevokeCertificateRequest {
6
- }
7
- export interface RevokeCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RevokeCertificateCommand extends $Command<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: RevokeCertificateCommandInput;
12
- constructor(input: RevokeCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeCertificateCommandInput, RevokeCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { RevokeCertificateRequest } from "../models/models_0";
14
+ export interface RevokeCertificateCommandInput
15
+ extends RevokeCertificateRequest {}
16
+ export interface RevokeCertificateCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class RevokeCertificateCommand extends $Command<
19
+ RevokeCertificateCommandInput,
20
+ RevokeCertificateCommandOutput,
21
+ ACMPCAClientResolvedConfig
22
+ > {
23
+ readonly input: RevokeCertificateCommandInput;
24
+ constructor(input: RevokeCertificateCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: ACMPCAClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<RevokeCertificateCommandInput, RevokeCertificateCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { TagCertificateAuthorityRequest } from "../models/models_0";
5
- export interface TagCertificateAuthorityCommandInput extends TagCertificateAuthorityRequest {
6
- }
7
- export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagCertificateAuthorityCommand extends $Command<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: TagCertificateAuthorityCommandInput;
12
- constructor(input: TagCertificateAuthorityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { TagCertificateAuthorityRequest } from "../models/models_0";
14
+ export interface TagCertificateAuthorityCommandInput
15
+ extends TagCertificateAuthorityRequest {}
16
+ export interface TagCertificateAuthorityCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class TagCertificateAuthorityCommand extends $Command<
20
+ TagCertificateAuthorityCommandInput,
21
+ TagCertificateAuthorityCommandOutput,
22
+ ACMPCAClientResolvedConfig
23
+ > {
24
+ readonly input: TagCertificateAuthorityCommandInput;
25
+ constructor(input: TagCertificateAuthorityCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMPCAClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ TagCertificateAuthorityCommandInput,
33
+ TagCertificateAuthorityCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { UntagCertificateAuthorityRequest } from "../models/models_0";
5
- export interface UntagCertificateAuthorityCommandInput extends UntagCertificateAuthorityRequest {
6
- }
7
- export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UntagCertificateAuthorityCommand extends $Command<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: UntagCertificateAuthorityCommandInput;
12
- constructor(input: UntagCertificateAuthorityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { UntagCertificateAuthorityRequest } from "../models/models_0";
14
+ export interface UntagCertificateAuthorityCommandInput
15
+ extends UntagCertificateAuthorityRequest {}
16
+ export interface UntagCertificateAuthorityCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UntagCertificateAuthorityCommand extends $Command<
20
+ UntagCertificateAuthorityCommandInput,
21
+ UntagCertificateAuthorityCommandOutput,
22
+ ACMPCAClientResolvedConfig
23
+ > {
24
+ readonly input: UntagCertificateAuthorityCommandInput;
25
+ constructor(input: UntagCertificateAuthorityCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMPCAClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UntagCertificateAuthorityCommandInput,
33
+ UntagCertificateAuthorityCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
4
- import { UpdateCertificateAuthorityRequest } from "../models/models_0";
5
- export interface UpdateCertificateAuthorityCommandInput extends UpdateCertificateAuthorityRequest {
6
- }
7
- export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateCertificateAuthorityCommand extends $Command<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
11
- readonly input: UpdateCertificateAuthorityCommandInput;
12
- constructor(input: UpdateCertificateAuthorityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMPCAClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMPCAClient";
13
+ import { UpdateCertificateAuthorityRequest } from "../models/models_0";
14
+ export interface UpdateCertificateAuthorityCommandInput
15
+ extends UpdateCertificateAuthorityRequest {}
16
+ export interface UpdateCertificateAuthorityCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UpdateCertificateAuthorityCommand extends $Command<
20
+ UpdateCertificateAuthorityCommandInput,
21
+ UpdateCertificateAuthorityCommandOutput,
22
+ ACMPCAClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateCertificateAuthorityCommandInput;
25
+ constructor(input: UpdateCertificateAuthorityCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMPCAClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UpdateCertificateAuthorityCommandInput,
33
+ UpdateCertificateAuthorityCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,23 +1,23 @@
1
- export * from "./CreateCertificateAuthorityAuditReportCommand";
2
- export * from "./CreateCertificateAuthorityCommand";
3
- export * from "./CreatePermissionCommand";
4
- export * from "./DeleteCertificateAuthorityCommand";
5
- export * from "./DeletePermissionCommand";
6
- export * from "./DeletePolicyCommand";
7
- export * from "./DescribeCertificateAuthorityAuditReportCommand";
8
- export * from "./DescribeCertificateAuthorityCommand";
9
- export * from "./GetCertificateAuthorityCertificateCommand";
10
- export * from "./GetCertificateAuthorityCsrCommand";
11
- export * from "./GetCertificateCommand";
12
- export * from "./GetPolicyCommand";
13
- export * from "./ImportCertificateAuthorityCertificateCommand";
14
- export * from "./IssueCertificateCommand";
15
- export * from "./ListCertificateAuthoritiesCommand";
16
- export * from "./ListPermissionsCommand";
17
- export * from "./ListTagsCommand";
18
- export * from "./PutPolicyCommand";
19
- export * from "./RestoreCertificateAuthorityCommand";
20
- export * from "./RevokeCertificateCommand";
21
- export * from "./TagCertificateAuthorityCommand";
22
- export * from "./UntagCertificateAuthorityCommand";
23
- export * from "./UpdateCertificateAuthorityCommand";
1
+ export * from "./CreateCertificateAuthorityAuditReportCommand";
2
+ export * from "./CreateCertificateAuthorityCommand";
3
+ export * from "./CreatePermissionCommand";
4
+ export * from "./DeleteCertificateAuthorityCommand";
5
+ export * from "./DeletePermissionCommand";
6
+ export * from "./DeletePolicyCommand";
7
+ export * from "./DescribeCertificateAuthorityAuditReportCommand";
8
+ export * from "./DescribeCertificateAuthorityCommand";
9
+ export * from "./GetCertificateAuthorityCertificateCommand";
10
+ export * from "./GetCertificateAuthorityCsrCommand";
11
+ export * from "./GetCertificateCommand";
12
+ export * from "./GetPolicyCommand";
13
+ export * from "./ImportCertificateAuthorityCertificateCommand";
14
+ export * from "./IssueCertificateCommand";
15
+ export * from "./ListCertificateAuthoritiesCommand";
16
+ export * from "./ListPermissionsCommand";
17
+ export * from "./ListTagsCommand";
18
+ export * from "./PutPolicyCommand";
19
+ export * from "./RestoreCertificateAuthorityCommand";
20
+ export * from "./RevokeCertificateCommand";
21
+ export * from "./TagCertificateAuthorityCommand";
22
+ export * from "./UntagCertificateAuthorityCommand";
23
+ export * from "./UpdateCertificateAuthorityCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./ACMPCA";
2
- export * from "./ACMPCAClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { ACMPCAServiceException } from "./models/ACMPCAServiceException";
1
+ export * from "./ACMPCA";
2
+ export * from "./ACMPCAClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { ACMPCAServiceException } from "./models/ACMPCAServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ACMPCAServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ACMPCAServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";