@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,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "../commands/DescribeCasesCommand";
3
- import { SupportPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeCases(config: SupportPaginationConfiguration, input: DescribeCasesCommandInput, ...additionalArguments: any): Paginator<DescribeCasesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeCasesCommandInput,
4
+ DescribeCasesCommandOutput,
5
+ } from "../commands/DescribeCasesCommand";
6
+ import { SupportPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeCases(
8
+ config: SupportPaginationConfiguration,
9
+ input: DescribeCasesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeCasesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "../commands/DescribeCommunicationsCommand";
3
- import { SupportPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeCommunications(config: SupportPaginationConfiguration, input: DescribeCommunicationsCommandInput, ...additionalArguments: any): Paginator<DescribeCommunicationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeCommunicationsCommandInput,
4
+ DescribeCommunicationsCommandOutput,
5
+ } from "../commands/DescribeCommunicationsCommand";
6
+ import { SupportPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeCommunications(
8
+ config: SupportPaginationConfiguration,
9
+ input: DescribeCommunicationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeCommunicationsCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Support } from "../Support";
3
- import { SupportClient } from "../SupportClient";
4
- export interface SupportPaginationConfiguration extends PaginationConfiguration {
5
- client: Support | SupportClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Support } from "../Support";
3
+ import { SupportClient } from "../SupportClient";
4
+ export interface SupportPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Support | SupportClient;
7
+ }
@@ -1,3 +1,3 @@
1
- export * from "./DescribeCasesPaginator";
2
- export * from "./DescribeCommunicationsPaginator";
3
- export * from "./Interfaces";
1
+ export * from "./DescribeCasesPaginator";
2
+ export * from "./DescribeCommunicationsPaginator";
3
+ export * from "./Interfaces";
@@ -1,44 +1,173 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput } from "../commands/AddAttachmentsToSetCommand";
4
- import { AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput } from "../commands/AddCommunicationToCaseCommand";
5
- import { CreateCaseCommandInput, CreateCaseCommandOutput } from "../commands/CreateCaseCommand";
6
- import { DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput } from "../commands/DescribeAttachmentCommand";
7
- import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "../commands/DescribeCasesCommand";
8
- import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "../commands/DescribeCommunicationsCommand";
9
- import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "../commands/DescribeServicesCommand";
10
- import { DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput } from "../commands/DescribeSeverityLevelsCommand";
11
- import { DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput } from "../commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
12
- import { DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput } from "../commands/DescribeTrustedAdvisorCheckResultCommand";
13
- import { DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput } from "../commands/DescribeTrustedAdvisorChecksCommand";
14
- import { DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput } from "../commands/DescribeTrustedAdvisorCheckSummariesCommand";
15
- import { RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput } from "../commands/RefreshTrustedAdvisorCheckCommand";
16
- import { ResolveCaseCommandInput, ResolveCaseCommandOutput } from "../commands/ResolveCaseCommand";
17
- export declare const serializeAws_json1_1AddAttachmentsToSetCommand: (input: AddAttachmentsToSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_1AddCommunicationToCaseCommand: (input: AddCommunicationToCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_1CreateCaseCommand: (input: CreateCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_1DescribeAttachmentCommand: (input: DescribeAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_1DescribeCasesCommand: (input: DescribeCasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_1DescribeCommunicationsCommand: (input: DescribeCommunicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_json1_1DescribeServicesCommand: (input: DescribeServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_json1_1DescribeSeverityLevelsCommand: (input: DescribeSeverityLevelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand: (input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand: (input: DescribeTrustedAdvisorCheckResultCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_1DescribeTrustedAdvisorChecksCommand: (input: DescribeTrustedAdvisorChecksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand: (input: DescribeTrustedAdvisorCheckSummariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_json1_1RefreshTrustedAdvisorCheckCommand: (input: RefreshTrustedAdvisorCheckCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_json1_1ResolveCaseCommand: (input: ResolveCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const deserializeAws_json1_1AddAttachmentsToSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddAttachmentsToSetCommandOutput>;
32
- export declare const deserializeAws_json1_1AddCommunicationToCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddCommunicationToCaseCommandOutput>;
33
- export declare const deserializeAws_json1_1CreateCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCaseCommandOutput>;
34
- export declare const deserializeAws_json1_1DescribeAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAttachmentCommandOutput>;
35
- export declare const deserializeAws_json1_1DescribeCasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCasesCommandOutput>;
36
- export declare const deserializeAws_json1_1DescribeCommunicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCommunicationsCommandOutput>;
37
- export declare const deserializeAws_json1_1DescribeServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServicesCommandOutput>;
38
- export declare const deserializeAws_json1_1DescribeSeverityLevelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSeverityLevelsCommandOutput>;
39
- export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput>;
40
- export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustedAdvisorCheckResultCommandOutput>;
41
- export declare const deserializeAws_json1_1DescribeTrustedAdvisorChecksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustedAdvisorChecksCommandOutput>;
42
- export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustedAdvisorCheckSummariesCommandOutput>;
43
- export declare const deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RefreshTrustedAdvisorCheckCommandOutput>;
44
- export declare const deserializeAws_json1_1ResolveCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResolveCaseCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AddAttachmentsToSetCommandInput,
8
+ AddAttachmentsToSetCommandOutput,
9
+ } from "../commands/AddAttachmentsToSetCommand";
10
+ import {
11
+ AddCommunicationToCaseCommandInput,
12
+ AddCommunicationToCaseCommandOutput,
13
+ } from "../commands/AddCommunicationToCaseCommand";
14
+ import {
15
+ CreateCaseCommandInput,
16
+ CreateCaseCommandOutput,
17
+ } from "../commands/CreateCaseCommand";
18
+ import {
19
+ DescribeAttachmentCommandInput,
20
+ DescribeAttachmentCommandOutput,
21
+ } from "../commands/DescribeAttachmentCommand";
22
+ import {
23
+ DescribeCasesCommandInput,
24
+ DescribeCasesCommandOutput,
25
+ } from "../commands/DescribeCasesCommand";
26
+ import {
27
+ DescribeCommunicationsCommandInput,
28
+ DescribeCommunicationsCommandOutput,
29
+ } from "../commands/DescribeCommunicationsCommand";
30
+ import {
31
+ DescribeServicesCommandInput,
32
+ DescribeServicesCommandOutput,
33
+ } from "../commands/DescribeServicesCommand";
34
+ import {
35
+ DescribeSeverityLevelsCommandInput,
36
+ DescribeSeverityLevelsCommandOutput,
37
+ } from "../commands/DescribeSeverityLevelsCommand";
38
+ import {
39
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
40
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
41
+ } from "../commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
42
+ import {
43
+ DescribeTrustedAdvisorCheckResultCommandInput,
44
+ DescribeTrustedAdvisorCheckResultCommandOutput,
45
+ } from "../commands/DescribeTrustedAdvisorCheckResultCommand";
46
+ import {
47
+ DescribeTrustedAdvisorChecksCommandInput,
48
+ DescribeTrustedAdvisorChecksCommandOutput,
49
+ } from "../commands/DescribeTrustedAdvisorChecksCommand";
50
+ import {
51
+ DescribeTrustedAdvisorCheckSummariesCommandInput,
52
+ DescribeTrustedAdvisorCheckSummariesCommandOutput,
53
+ } from "../commands/DescribeTrustedAdvisorCheckSummariesCommand";
54
+ import {
55
+ RefreshTrustedAdvisorCheckCommandInput,
56
+ RefreshTrustedAdvisorCheckCommandOutput,
57
+ } from "../commands/RefreshTrustedAdvisorCheckCommand";
58
+ import {
59
+ ResolveCaseCommandInput,
60
+ ResolveCaseCommandOutput,
61
+ } from "../commands/ResolveCaseCommand";
62
+ export declare const serializeAws_json1_1AddAttachmentsToSetCommand: (
63
+ input: AddAttachmentsToSetCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_json1_1AddCommunicationToCaseCommand: (
67
+ input: AddCommunicationToCaseCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_json1_1CreateCaseCommand: (
71
+ input: CreateCaseCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_json1_1DescribeAttachmentCommand: (
75
+ input: DescribeAttachmentCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_json1_1DescribeCasesCommand: (
79
+ input: DescribeCasesCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_json1_1DescribeCommunicationsCommand: (
83
+ input: DescribeCommunicationsCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_json1_1DescribeServicesCommand: (
87
+ input: DescribeServicesCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_json1_1DescribeSeverityLevelsCommand: (
91
+ input: DescribeSeverityLevelsCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand: (
95
+ input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand: (
99
+ input: DescribeTrustedAdvisorCheckResultCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_json1_1DescribeTrustedAdvisorChecksCommand: (
103
+ input: DescribeTrustedAdvisorChecksCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand: (
107
+ input: DescribeTrustedAdvisorCheckSummariesCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_json1_1RefreshTrustedAdvisorCheckCommand: (
111
+ input: RefreshTrustedAdvisorCheckCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_json1_1ResolveCaseCommand: (
115
+ input: ResolveCaseCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const deserializeAws_json1_1AddAttachmentsToSetCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<AddAttachmentsToSetCommandOutput>;
122
+ export declare const deserializeAws_json1_1AddCommunicationToCaseCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<AddCommunicationToCaseCommandOutput>;
126
+ export declare const deserializeAws_json1_1CreateCaseCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<CreateCaseCommandOutput>;
130
+ export declare const deserializeAws_json1_1DescribeAttachmentCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<DescribeAttachmentCommandOutput>;
134
+ export declare const deserializeAws_json1_1DescribeCasesCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<DescribeCasesCommandOutput>;
138
+ export declare const deserializeAws_json1_1DescribeCommunicationsCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<DescribeCommunicationsCommandOutput>;
142
+ export declare const deserializeAws_json1_1DescribeServicesCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<DescribeServicesCommandOutput>;
146
+ export declare const deserializeAws_json1_1DescribeSeverityLevelsCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<DescribeSeverityLevelsCommandOutput>;
150
+ export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput>;
154
+ export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DescribeTrustedAdvisorCheckResultCommandOutput>;
158
+ export declare const deserializeAws_json1_1DescribeTrustedAdvisorChecksCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<DescribeTrustedAdvisorChecksCommandOutput>;
162
+ export declare const deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<DescribeTrustedAdvisorCheckSummariesCommandOutput>;
166
+ export declare const deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<RefreshTrustedAdvisorCheckCommandOutput>;
170
+ export declare const deserializeAws_json1_1ResolveCaseCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<ResolveCaseCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { SupportClientConfig } from "./SupportClient";
3
-
4
- export declare const getRuntimeConfig: (config: SupportClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SupportClientConfig } from "./SupportClient";
3
+ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,38 +1,65 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { SupportClientConfig } from "./SupportClient";
3
-
4
- export declare const getRuntimeConfig: (config: SupportClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SupportClientConfig } from "./SupportClient";
3
+ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,37 +1,66 @@
1
- import { SupportClientConfig } from "./SupportClient";
2
-
3
- export declare const getRuntimeConfig: (config: SupportClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { SupportClientConfig } from "./SupportClient";
2
+ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@aws-sdk/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@aws-sdk/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@aws-sdk/types").HttpHandlerOptions
10
+ > &
11
+ import("@aws-sdk/protocol-http").HttpHandler)
12
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ urlParser: import("@aws-sdk/types").UrlParser;
15
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
16
+ streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ base64Decoder: import("@aws-sdk/types").Decoder;
18
+ base64Encoder: import("@aws-sdk/types").Encoder;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ disableHostPrefix: boolean;
22
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
23
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
26
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
+ serviceId: string;
28
+ region: string | import("@aws-sdk/types").Provider<any>;
29
+ credentialDefaultProvider: (
30
+ input: any
31
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
32
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
33
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
34
+ import("@aws-sdk/types").UserAgent
35
+ >;
36
+ defaultsMode:
37
+ | import("@aws-sdk/smithy-client").DefaultsMode
38
+ | import("@aws-sdk/types").Provider<
39
+ import("@aws-sdk/smithy-client").DefaultsMode
40
+ >;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,11 +1,10 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { SupportClientConfig } from "./SupportClient";
3
-
4
- export declare const getRuntimeConfig: (config: SupportClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { SupportClientConfig } from "./SupportClient";
3
+ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
4
+ apiVersion: string;
5
+ disableHostPrefix: boolean;
6
+ logger: __Logger;
7
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
8
+ serviceId: string;
9
+ urlParser: import("@aws-sdk/types").UrlParser;
10
+ };