@aws-sdk/client-support 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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Support.d.ts +274 -75
- package/dist-types/ts3.4/SupportClient.d.ts +213 -87
- package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SupportServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +568 -513
- package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
5
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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,66 @@
|
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
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,38 +1,66 @@
|
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
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,37 +1,67 @@
|
|
|
1
|
-
import { SupportClientConfig } from "./SupportClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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:
|
|
7
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
8
|
+
any,
|
|
9
|
+
any,
|
|
10
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
11
|
+
> &
|
|
12
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
13
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
14
|
+
apiVersion: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
19
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
disableHostPrefix: boolean;
|
|
23
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
24
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
27
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
30
|
+
credentialDefaultProvider: (
|
|
31
|
+
input: any
|
|
32
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
33
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
34
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
35
|
+
import("@aws-sdk/types").UserAgent
|
|
36
|
+
>;
|
|
37
|
+
defaultsMode:
|
|
38
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
39
|
+
| import("@aws-sdk/types").Provider<
|
|
40
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
41
|
+
>;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { SupportClientConfig } from "./SupportClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
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
|
+
};
|