@aws-sdk/client-support 3.329.0 → 3.335.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/README.md +16 -0
- package/dist-cjs/Support.js +4 -0
- package/dist-cjs/commands/DescribeCreateCaseOptionsCommand.js +45 -0
- package/dist-cjs/commands/DescribeSupportedLanguagesCommand.js +45 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +14 -1
- package/dist-cjs/protocols/Aws_json1_1.js +109 -2
- package/dist-es/Support.js +4 -0
- package/dist-es/commands/DescribeCreateCaseOptionsCommand.js +41 -0
- package/dist-es/commands/DescribeSupportedLanguagesCommand.js +41 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +105 -2
- package/dist-types/Support.d.ts +14 -0
- package/dist-types/SupportClient.d.ts +7 -4
- package/dist-types/commands/DescribeCreateCaseOptionsCommand.d.ts +114 -0
- package/dist-types/commands/DescribeSupportedLanguagesCommand.d.ts +101 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +5 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +232 -8
- package/dist-types/protocols/Aws_json1_1.d.ts +20 -2
- package/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/dist-types/runtimeConfig.d.ts +9 -9
- package/dist-types/runtimeConfig.native.d.ts +13 -13
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/Support.d.ts +34 -0
- package/dist-types/ts3.4/SupportClient.d.ts +19 -5
- package/dist-types/ts3.4/commands/DescribeCreateCaseOptionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeSupportedLanguagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +43 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +26 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
- package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
- package/package.json +7 -6
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeCreateCaseOptionsRequest,
|
|
11
|
+
DescribeCreateCaseOptionsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SupportClientResolvedConfig,
|
|
17
|
+
} from "../SupportClient";
|
|
18
|
+
export interface DescribeCreateCaseOptionsCommandInput
|
|
19
|
+
extends DescribeCreateCaseOptionsRequest {}
|
|
20
|
+
export interface DescribeCreateCaseOptionsCommandOutput
|
|
21
|
+
extends DescribeCreateCaseOptionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeCreateCaseOptionsCommand extends $Command<
|
|
24
|
+
DescribeCreateCaseOptionsCommandInput,
|
|
25
|
+
DescribeCreateCaseOptionsCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeCreateCaseOptionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeCreateCaseOptionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeCreateCaseOptionsCommandInput,
|
|
37
|
+
DescribeCreateCaseOptionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeSupportedLanguagesRequest,
|
|
11
|
+
DescribeSupportedLanguagesResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SupportClientResolvedConfig,
|
|
17
|
+
} from "../SupportClient";
|
|
18
|
+
export interface DescribeSupportedLanguagesCommandInput
|
|
19
|
+
extends DescribeSupportedLanguagesRequest {}
|
|
20
|
+
export interface DescribeSupportedLanguagesCommandOutput
|
|
21
|
+
extends DescribeSupportedLanguagesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeSupportedLanguagesCommand extends $Command<
|
|
24
|
+
DescribeSupportedLanguagesCommandInput,
|
|
25
|
+
DescribeSupportedLanguagesCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeSupportedLanguagesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeSupportedLanguagesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeSupportedLanguagesCommandInput,
|
|
37
|
+
DescribeSupportedLanguagesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -4,8 +4,10 @@ export * from "./CreateCaseCommand";
|
|
|
4
4
|
export * from "./DescribeAttachmentCommand";
|
|
5
5
|
export * from "./DescribeCasesCommand";
|
|
6
6
|
export * from "./DescribeCommunicationsCommand";
|
|
7
|
+
export * from "./DescribeCreateCaseOptionsCommand";
|
|
7
8
|
export * from "./DescribeServicesCommand";
|
|
8
9
|
export * from "./DescribeSeverityLevelsCommand";
|
|
10
|
+
export * from "./DescribeSupportedLanguagesCommand";
|
|
9
11
|
export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
|
|
10
12
|
export * from "./DescribeTrustedAdvisorCheckResultCommand";
|
|
11
13
|
export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
|
-
Endpoint,
|
|
3
2
|
EndpointParameters as __EndpointParameters,
|
|
4
3
|
EndpointV2,
|
|
5
|
-
Provider,
|
|
6
4
|
} from "@aws-sdk/types";
|
|
5
|
+
import { Endpoint, Provider } from "@smithy/types";
|
|
7
6
|
export interface ClientInputEndpointParameters {
|
|
8
7
|
region?: string | Provider<string>;
|
|
9
8
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
@@ -160,6 +160,36 @@ export interface DescribeCommunicationsResponse {
|
|
|
160
160
|
communications?: Communication[];
|
|
161
161
|
nextToken?: string;
|
|
162
162
|
}
|
|
163
|
+
export interface DescribeCreateCaseOptionsRequest {
|
|
164
|
+
issueType: string | undefined;
|
|
165
|
+
serviceCode: string | undefined;
|
|
166
|
+
language: string | undefined;
|
|
167
|
+
categoryCode: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface DateInterval {
|
|
170
|
+
startDateTime?: string;
|
|
171
|
+
endDateTime?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface SupportedHour {
|
|
174
|
+
startTime?: string;
|
|
175
|
+
endTime?: string;
|
|
176
|
+
}
|
|
177
|
+
export interface CommunicationTypeOptions {
|
|
178
|
+
type?: string;
|
|
179
|
+
supportedHours?: SupportedHour[];
|
|
180
|
+
datesWithoutSupport?: DateInterval[];
|
|
181
|
+
}
|
|
182
|
+
export interface DescribeCreateCaseOptionsResponse {
|
|
183
|
+
languageAvailability?: string;
|
|
184
|
+
communicationTypes?: CommunicationTypeOptions[];
|
|
185
|
+
}
|
|
186
|
+
export declare class ThrottlingException extends __BaseException {
|
|
187
|
+
readonly name: "ThrottlingException";
|
|
188
|
+
readonly $fault: "client";
|
|
189
|
+
constructor(
|
|
190
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
191
|
+
);
|
|
192
|
+
}
|
|
163
193
|
export interface DescribeServicesRequest {
|
|
164
194
|
serviceCodeList?: string[];
|
|
165
195
|
language?: string;
|
|
@@ -186,6 +216,19 @@ export interface SeverityLevel {
|
|
|
186
216
|
export interface DescribeSeverityLevelsResponse {
|
|
187
217
|
severityLevels?: SeverityLevel[];
|
|
188
218
|
}
|
|
219
|
+
export interface DescribeSupportedLanguagesRequest {
|
|
220
|
+
issueType: string | undefined;
|
|
221
|
+
serviceCode: string | undefined;
|
|
222
|
+
categoryCode: string | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface SupportedLanguage {
|
|
225
|
+
code?: string;
|
|
226
|
+
language?: string;
|
|
227
|
+
display?: string;
|
|
228
|
+
}
|
|
229
|
+
export interface DescribeSupportedLanguagesResponse {
|
|
230
|
+
supportedLanguages?: SupportedLanguage[];
|
|
231
|
+
}
|
|
189
232
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
|
|
190
233
|
checkIds: string[] | undefined;
|
|
191
234
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HttpRequest as __HttpRequest,
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
6
|
import {
|
|
7
7
|
AddAttachmentsToSetCommandInput,
|
|
8
8
|
AddAttachmentsToSetCommandOutput,
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
DescribeCommunicationsCommandInput,
|
|
28
28
|
DescribeCommunicationsCommandOutput,
|
|
29
29
|
} from "../commands/DescribeCommunicationsCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeCreateCaseOptionsCommandInput,
|
|
32
|
+
DescribeCreateCaseOptionsCommandOutput,
|
|
33
|
+
} from "../commands/DescribeCreateCaseOptionsCommand";
|
|
30
34
|
import {
|
|
31
35
|
DescribeServicesCommandInput,
|
|
32
36
|
DescribeServicesCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DescribeSeverityLevelsCommandInput,
|
|
36
40
|
DescribeSeverityLevelsCommandOutput,
|
|
37
41
|
} from "../commands/DescribeSeverityLevelsCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeSupportedLanguagesCommandInput,
|
|
44
|
+
DescribeSupportedLanguagesCommandOutput,
|
|
45
|
+
} from "../commands/DescribeSupportedLanguagesCommand";
|
|
38
46
|
import {
|
|
39
47
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
40
48
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
|
|
@@ -83,6 +91,10 @@ export declare const se_DescribeCommunicationsCommand: (
|
|
|
83
91
|
input: DescribeCommunicationsCommandInput,
|
|
84
92
|
context: __SerdeContext
|
|
85
93
|
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_DescribeCreateCaseOptionsCommand: (
|
|
95
|
+
input: DescribeCreateCaseOptionsCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
86
98
|
export declare const se_DescribeServicesCommand: (
|
|
87
99
|
input: DescribeServicesCommandInput,
|
|
88
100
|
context: __SerdeContext
|
|
@@ -91,6 +103,10 @@ export declare const se_DescribeSeverityLevelsCommand: (
|
|
|
91
103
|
input: DescribeSeverityLevelsCommandInput,
|
|
92
104
|
context: __SerdeContext
|
|
93
105
|
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_DescribeSupportedLanguagesCommand: (
|
|
107
|
+
input: DescribeSupportedLanguagesCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
94
110
|
export declare const se_DescribeTrustedAdvisorCheckRefreshStatusesCommand: (
|
|
95
111
|
input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
96
112
|
context: __SerdeContext
|
|
@@ -139,6 +155,10 @@ export declare const de_DescribeCommunicationsCommand: (
|
|
|
139
155
|
output: __HttpResponse,
|
|
140
156
|
context: __SerdeContext
|
|
141
157
|
) => Promise<DescribeCommunicationsCommandOutput>;
|
|
158
|
+
export declare const de_DescribeCreateCaseOptionsCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<DescribeCreateCaseOptionsCommandOutput>;
|
|
142
162
|
export declare const de_DescribeServicesCommand: (
|
|
143
163
|
output: __HttpResponse,
|
|
144
164
|
context: __SerdeContext
|
|
@@ -147,6 +167,10 @@ export declare const de_DescribeSeverityLevelsCommand: (
|
|
|
147
167
|
output: __HttpResponse,
|
|
148
168
|
context: __SerdeContext
|
|
149
169
|
) => Promise<DescribeSeverityLevelsCommandOutput>;
|
|
170
|
+
export declare const de_DescribeSupportedLanguagesCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<DescribeSupportedLanguagesCommandOutput>;
|
|
150
174
|
export declare const de_DescribeTrustedAdvisorCheckRefreshStatusesCommand: (
|
|
151
175
|
output: __HttpResponse,
|
|
152
176
|
context: __SerdeContext
|
|
@@ -8,11 +8,12 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
|
-
) => import("@
|
|
11
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
12
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
13
|
import("@aws-sdk/types").UserAgent
|
|
14
14
|
>;
|
|
15
|
-
maxAttempts: number | import("@
|
|
15
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
16
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
16
17
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
17
18
|
requestHandler:
|
|
18
19
|
| (import("@aws-sdk/types").RequestHandler<
|
|
@@ -20,19 +21,21 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
20
21
|
any,
|
|
21
22
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
23
|
> &
|
|
23
|
-
import("@
|
|
24
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
24
25
|
| RequestHandler;
|
|
25
|
-
retryMode: string | import("@
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
27
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
27
|
-
streamCollector: import("@
|
|
28
|
-
useDualstackEndpoint: boolean | import("@
|
|
29
|
-
|
|
28
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
29
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
31
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
32
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
30
33
|
apiVersion: string;
|
|
31
34
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
32
|
-
base64Decoder: import("@
|
|
33
|
-
base64Encoder: import("@
|
|
34
|
-
utf8Decoder: import("@
|
|
35
|
-
utf8Encoder: import("@
|
|
35
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
37
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
38
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
36
39
|
disableHostPrefix: boolean;
|
|
37
40
|
serviceId: string;
|
|
38
41
|
logger: import("@aws-sdk/types").Logger;
|
|
@@ -46,11 +49,11 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
46
49
|
) &
|
|
47
50
|
(
|
|
48
51
|
| string
|
|
49
|
-
| import("@
|
|
50
|
-
| import("@
|
|
51
|
-
| import("@
|
|
52
|
+
| import("@smithy/types").Provider<string>
|
|
53
|
+
| import("@smithy/types").Endpoint
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
55
|
| import("@aws-sdk/types").EndpointV2
|
|
53
|
-
| import("@
|
|
56
|
+
| import("@smithy/types").Provider<
|
|
54
57
|
import("@aws-sdk/types").EndpointV2
|
|
55
58
|
>
|
|
56
59
|
))
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
|
-
) => import("@
|
|
11
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
12
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
13
|
import("@aws-sdk/types").UserAgent
|
|
14
14
|
>;
|
|
@@ -20,19 +20,19 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
20
20
|
any,
|
|
21
21
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
22
|
> &
|
|
23
|
-
import("@
|
|
23
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
24
24
|
| RequestHandler;
|
|
25
|
-
retryMode: string | import("@
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
27
|
-
streamCollector: import("@
|
|
27
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
28
28
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
29
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
30
|
apiVersion: string;
|
|
31
31
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
32
|
-
base64Decoder: import("@
|
|
33
|
-
base64Encoder: import("@
|
|
34
|
-
utf8Decoder: import("@
|
|
35
|
-
utf8Encoder: import("@
|
|
32
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
33
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
34
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
serviceId: string;
|
|
38
38
|
logger: import("@aws-sdk/types").Logger;
|
|
@@ -46,11 +46,11 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
46
46
|
) &
|
|
47
47
|
(
|
|
48
48
|
| string
|
|
49
|
-
| import("@
|
|
50
|
-
| import("@
|
|
51
|
-
| import("@
|
|
49
|
+
| import("@smithy/types").Provider<string>
|
|
50
|
+
| import("@smithy/types").Endpoint
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
52
|
| import("@aws-sdk/types").EndpointV2
|
|
53
|
-
| import("@
|
|
53
|
+
| import("@smithy/types").Provider<
|
|
54
54
|
import("@aws-sdk/types").EndpointV2
|
|
55
55
|
>
|
|
56
56
|
))
|
|
@@ -8,41 +8,46 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
8
8
|
any,
|
|
9
9
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
10
10
|
> &
|
|
11
|
-
import("@
|
|
11
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
12
12
|
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
13
13
|
apiVersion: string;
|
|
14
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
15
15
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
16
|
-
streamCollector: import("@
|
|
17
|
-
base64Decoder: import("@
|
|
18
|
-
base64Encoder: import("@
|
|
19
|
-
utf8Decoder: import("@
|
|
20
|
-
utf8Encoder: import("@
|
|
16
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
21
21
|
disableHostPrefix: boolean;
|
|
22
22
|
serviceId: string;
|
|
23
|
-
useDualstackEndpoint: boolean | import("@
|
|
24
|
-
|
|
23
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
24
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
25
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
25
27
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
26
28
|
credentialDefaultProvider: (
|
|
27
29
|
input: any
|
|
28
|
-
) => import("@
|
|
30
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
29
31
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
30
32
|
import("@aws-sdk/types").UserAgent
|
|
31
33
|
>;
|
|
32
|
-
maxAttempts: number | import("@
|
|
33
|
-
|
|
34
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
35
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
36
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
37
|
logger: import("@aws-sdk/types").Logger;
|
|
35
38
|
defaultsMode:
|
|
36
39
|
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
37
|
-
| import("@
|
|
40
|
+
| import("@smithy/types").Provider<
|
|
38
41
|
import("@aws-sdk/smithy-client").DefaultsMode
|
|
39
42
|
>;
|
|
40
43
|
endpoint?:
|
|
41
44
|
| string
|
|
42
|
-
| import("@aws-sdk/types").Endpoint
|
|
43
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
45
|
| import("@aws-sdk/types").EndpointV2
|
|
45
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").
|
|
46
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> &
|
|
47
|
+
import("@smithy/types").Provider<import("@smithy/types").Endpoint>)
|
|
48
|
+
| (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint)
|
|
49
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> &
|
|
50
|
+
import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)
|
|
46
51
|
| undefined;
|
|
47
52
|
endpointProvider: (
|
|
48
53
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { SupportClientConfig } from "./SupportClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
|
-
base64Decoder: import("@
|
|
5
|
-
base64Encoder: import("@
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -13,6 +13,6 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
13
13
|
logger: import("@aws-sdk/types").Logger;
|
|
14
14
|
serviceId: string;
|
|
15
15
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
-
utf8Decoder: import("@
|
|
17
|
-
utf8Encoder: import("@
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
18
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.335.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.335.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.329.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.335.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.329.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.329.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.329.0",
|
|
@@ -36,10 +36,9 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.329.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.329.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.329.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.332.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.329.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.329.0",
|
|
42
|
-
"@aws-sdk/protocol-http": "3.329.0",
|
|
43
42
|
"@aws-sdk/smithy-client": "3.329.0",
|
|
44
43
|
"@aws-sdk/types": "3.329.0",
|
|
45
44
|
"@aws-sdk/url-parser": "3.329.0",
|
|
@@ -48,11 +47,13 @@
|
|
|
48
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
48
|
"@aws-sdk/util-defaults-mode-browser": "3.329.0",
|
|
50
49
|
"@aws-sdk/util-defaults-mode-node": "3.329.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.332.0",
|
|
52
51
|
"@aws-sdk/util-retry": "3.329.0",
|
|
53
52
|
"@aws-sdk/util-user-agent-browser": "3.329.0",
|
|
54
53
|
"@aws-sdk/util-user-agent-node": "3.329.0",
|
|
55
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
|
+
"@smithy/protocol-http": "^1.0.1",
|
|
56
|
+
"@smithy/types": "^1.0.0",
|
|
56
57
|
"tslib": "^2.5.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|