@aws-sdk/client-acm 3.169.0 → 3.171.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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ACM.d.ts +259 -80
  3. package/dist-types/ts3.4/ACMClient.d.ts +193 -88
  4. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
  6. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
  16. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +7 -7
  22. package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +487 -570
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  26. package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  34. package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
  35. package/package.json +35 -35
@@ -1,17 +1,36 @@
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 { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0";
5
- export interface RequestCertificateCommandInput extends RequestCertificateRequest {
6
- }
7
- export interface RequestCertificateCommandOutput extends RequestCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RequestCertificateCommand extends $Command<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RequestCertificateCommandInput;
12
- constructor(input: RequestCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
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
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ RequestCertificateRequest,
15
+ RequestCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface RequestCertificateCommandInput
18
+ extends RequestCertificateRequest {}
19
+ export interface RequestCertificateCommandOutput
20
+ extends RequestCertificateResponse,
21
+ __MetadataBearer {}
22
+ export declare class RequestCertificateCommand extends $Command<
23
+ RequestCertificateCommandInput,
24
+ RequestCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: RequestCertificateCommandInput;
28
+ constructor(input: RequestCertificateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ACMClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ResendValidationEmailRequest } from "../models/models_0";
5
- export interface ResendValidationEmailCommandInput extends ResendValidationEmailRequest {
6
- }
7
- export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class ResendValidationEmailCommand extends $Command<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ResendValidationEmailCommandInput;
12
- constructor(input: ResendValidationEmailCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput>;
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
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { ResendValidationEmailRequest } from "../models/models_0";
14
+ export interface ResendValidationEmailCommandInput
15
+ extends ResendValidationEmailRequest {}
16
+ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {}
17
+ export declare class ResendValidationEmailCommand extends $Command<
18
+ ResendValidationEmailCommandInput,
19
+ ResendValidationEmailCommandOutput,
20
+ ACMClientResolvedConfig
21
+ > {
22
+ readonly input: ResendValidationEmailCommandInput;
23
+ constructor(input: ResendValidationEmailCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: ACMClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ ResendValidationEmailCommandInput,
30
+ ResendValidationEmailCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,35 @@
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 { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { UpdateCertificateOptionsRequest } from "../models/models_0";
5
- export interface UpdateCertificateOptionsCommandInput extends UpdateCertificateOptionsRequest {
6
- }
7
- export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateCertificateOptionsCommand extends $Command<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: UpdateCertificateOptionsCommandInput;
12
- constructor(input: UpdateCertificateOptionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput>;
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
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { UpdateCertificateOptionsRequest } from "../models/models_0";
14
+ export interface UpdateCertificateOptionsCommandInput
15
+ extends UpdateCertificateOptionsRequest {}
16
+ export interface UpdateCertificateOptionsCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class UpdateCertificateOptionsCommand extends $Command<
19
+ UpdateCertificateOptionsCommandInput,
20
+ UpdateCertificateOptionsCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateCertificateOptionsCommandInput;
24
+ constructor(input: UpdateCertificateOptionsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ UpdateCertificateOptionsCommandInput,
31
+ UpdateCertificateOptionsCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,15 +1,15 @@
1
- export * from "./AddTagsToCertificateCommand";
2
- export * from "./DeleteCertificateCommand";
3
- export * from "./DescribeCertificateCommand";
4
- export * from "./ExportCertificateCommand";
5
- export * from "./GetAccountConfigurationCommand";
6
- export * from "./GetCertificateCommand";
7
- export * from "./ImportCertificateCommand";
8
- export * from "./ListCertificatesCommand";
9
- export * from "./ListTagsForCertificateCommand";
10
- export * from "./PutAccountConfigurationCommand";
11
- export * from "./RemoveTagsFromCertificateCommand";
12
- export * from "./RenewCertificateCommand";
13
- export * from "./RequestCertificateCommand";
14
- export * from "./ResendValidationEmailCommand";
15
- export * from "./UpdateCertificateOptionsCommand";
1
+ export * from "./AddTagsToCertificateCommand";
2
+ export * from "./DeleteCertificateCommand";
3
+ export * from "./DescribeCertificateCommand";
4
+ export * from "./ExportCertificateCommand";
5
+ export * from "./GetAccountConfigurationCommand";
6
+ export * from "./GetCertificateCommand";
7
+ export * from "./ImportCertificateCommand";
8
+ export * from "./ListCertificatesCommand";
9
+ export * from "./ListTagsForCertificateCommand";
10
+ export * from "./PutAccountConfigurationCommand";
11
+ export * from "./RemoveTagsFromCertificateCommand";
12
+ export * from "./RenewCertificateCommand";
13
+ export * from "./RequestCertificateCommand";
14
+ export * from "./ResendValidationEmailCommand";
15
+ export * from "./UpdateCertificateOptionsCommand";
@@ -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 "./ACM";
2
- export * from "./ACMClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { ACMServiceException } from "./models/ACMServiceException";
1
+ export * from "./ACM";
2
+ export * from "./ACMClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { ACMServiceException } from "./models/ACMServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ACMServiceException 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
+ export declare class ACMServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";