@aws-sdk/client-support 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 (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Support.d.ts +260 -75
  3. package/dist-types/ts3.4/SupportClient.d.ts +188 -87
  4. package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/SupportServiceException.d.ts +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +398 -513
  24. package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +173 -44
  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/package.json +34 -34
@@ -1,17 +1,39 @@
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 { DescribeTrustedAdvisorChecksRequest, DescribeTrustedAdvisorChecksResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeTrustedAdvisorChecksCommandInput extends DescribeTrustedAdvisorChecksRequest {
6
- }
7
- export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrustedAdvisorChecksResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTrustedAdvisorChecksCommand extends $Command<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeTrustedAdvisorChecksCommandInput;
12
- constructor(input: DescribeTrustedAdvisorChecksCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput>;
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
+ DescribeTrustedAdvisorChecksRequest,
10
+ DescribeTrustedAdvisorChecksResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeTrustedAdvisorChecksCommandInput
18
+ extends DescribeTrustedAdvisorChecksRequest {}
19
+ export interface DescribeTrustedAdvisorChecksCommandOutput
20
+ extends DescribeTrustedAdvisorChecksResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeTrustedAdvisorChecksCommand extends $Command<
23
+ DescribeTrustedAdvisorChecksCommandInput,
24
+ DescribeTrustedAdvisorChecksCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeTrustedAdvisorChecksCommandInput;
28
+ constructor(input: DescribeTrustedAdvisorChecksCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeTrustedAdvisorChecksCommandInput,
35
+ DescribeTrustedAdvisorChecksCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { RefreshTrustedAdvisorCheckRequest, RefreshTrustedAdvisorCheckResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface RefreshTrustedAdvisorCheckCommandInput extends RefreshTrustedAdvisorCheckRequest {
6
- }
7
- export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedAdvisorCheckResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RefreshTrustedAdvisorCheckCommand extends $Command<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: RefreshTrustedAdvisorCheckCommandInput;
12
- constructor(input: RefreshTrustedAdvisorCheckCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput>;
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
+ RefreshTrustedAdvisorCheckRequest,
10
+ RefreshTrustedAdvisorCheckResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface RefreshTrustedAdvisorCheckCommandInput
18
+ extends RefreshTrustedAdvisorCheckRequest {}
19
+ export interface RefreshTrustedAdvisorCheckCommandOutput
20
+ extends RefreshTrustedAdvisorCheckResponse,
21
+ __MetadataBearer {}
22
+ export declare class RefreshTrustedAdvisorCheckCommand extends $Command<
23
+ RefreshTrustedAdvisorCheckCommandInput,
24
+ RefreshTrustedAdvisorCheckCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: RefreshTrustedAdvisorCheckCommandInput;
28
+ constructor(input: RefreshTrustedAdvisorCheckCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ RefreshTrustedAdvisorCheckCommandInput,
35
+ RefreshTrustedAdvisorCheckCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface ResolveCaseCommandInput extends ResolveCaseRequest {
6
- }
7
- export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ResolveCaseCommand extends $Command<ResolveCaseCommandInput, ResolveCaseCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: ResolveCaseCommandInput;
12
- constructor(input: ResolveCaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
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 { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SupportClientResolvedConfig,
13
+ } from "../SupportClient";
14
+ export interface ResolveCaseCommandInput extends ResolveCaseRequest {}
15
+ export interface ResolveCaseCommandOutput
16
+ extends ResolveCaseResponse,
17
+ __MetadataBearer {}
18
+ export declare class ResolveCaseCommand extends $Command<
19
+ ResolveCaseCommandInput,
20
+ ResolveCaseCommandOutput,
21
+ SupportClientResolvedConfig
22
+ > {
23
+ readonly input: ResolveCaseCommandInput;
24
+ constructor(input: ResolveCaseCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SupportClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,14 +1,14 @@
1
- export * from "./AddAttachmentsToSetCommand";
2
- export * from "./AddCommunicationToCaseCommand";
3
- export * from "./CreateCaseCommand";
4
- export * from "./DescribeAttachmentCommand";
5
- export * from "./DescribeCasesCommand";
6
- export * from "./DescribeCommunicationsCommand";
7
- export * from "./DescribeServicesCommand";
8
- export * from "./DescribeSeverityLevelsCommand";
9
- export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
10
- export * from "./DescribeTrustedAdvisorCheckResultCommand";
11
- export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
12
- export * from "./DescribeTrustedAdvisorChecksCommand";
13
- export * from "./RefreshTrustedAdvisorCheckCommand";
14
- export * from "./ResolveCaseCommand";
1
+ export * from "./AddAttachmentsToSetCommand";
2
+ export * from "./AddCommunicationToCaseCommand";
3
+ export * from "./CreateCaseCommand";
4
+ export * from "./DescribeAttachmentCommand";
5
+ export * from "./DescribeCasesCommand";
6
+ export * from "./DescribeCommunicationsCommand";
7
+ export * from "./DescribeServicesCommand";
8
+ export * from "./DescribeSeverityLevelsCommand";
9
+ export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
10
+ export * from "./DescribeTrustedAdvisorCheckResultCommand";
11
+ export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
12
+ export * from "./DescribeTrustedAdvisorChecksCommand";
13
+ export * from "./RefreshTrustedAdvisorCheckCommand";
14
+ export * from "./ResolveCaseCommand";
@@ -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,6 +1,6 @@
1
- export * from "./Support";
2
- export * from "./SupportClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { SupportServiceException } from "./models/SupportServiceException";
1
+ export * from "./Support";
2
+ export * from "./SupportClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SupportServiceException } from "./models/SupportServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SupportServiceException 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 SupportServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";