@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,87 +1,213 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
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
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
AddAttachmentsToSetCommandInput,
|
|
47
|
+
AddAttachmentsToSetCommandOutput,
|
|
48
|
+
} from "./commands/AddAttachmentsToSetCommand";
|
|
49
|
+
import {
|
|
50
|
+
AddCommunicationToCaseCommandInput,
|
|
51
|
+
AddCommunicationToCaseCommandOutput,
|
|
52
|
+
} from "./commands/AddCommunicationToCaseCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateCaseCommandInput,
|
|
55
|
+
CreateCaseCommandOutput,
|
|
56
|
+
} from "./commands/CreateCaseCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeAttachmentCommandInput,
|
|
59
|
+
DescribeAttachmentCommandOutput,
|
|
60
|
+
} from "./commands/DescribeAttachmentCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeCasesCommandInput,
|
|
63
|
+
DescribeCasesCommandOutput,
|
|
64
|
+
} from "./commands/DescribeCasesCommand";
|
|
65
|
+
import {
|
|
66
|
+
DescribeCommunicationsCommandInput,
|
|
67
|
+
DescribeCommunicationsCommandOutput,
|
|
68
|
+
} from "./commands/DescribeCommunicationsCommand";
|
|
69
|
+
import {
|
|
70
|
+
DescribeServicesCommandInput,
|
|
71
|
+
DescribeServicesCommandOutput,
|
|
72
|
+
} from "./commands/DescribeServicesCommand";
|
|
73
|
+
import {
|
|
74
|
+
DescribeSeverityLevelsCommandInput,
|
|
75
|
+
DescribeSeverityLevelsCommandOutput,
|
|
76
|
+
} from "./commands/DescribeSeverityLevelsCommand";
|
|
77
|
+
import {
|
|
78
|
+
DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
79
|
+
DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
|
|
80
|
+
} from "./commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
|
|
81
|
+
import {
|
|
82
|
+
DescribeTrustedAdvisorCheckResultCommandInput,
|
|
83
|
+
DescribeTrustedAdvisorCheckResultCommandOutput,
|
|
84
|
+
} from "./commands/DescribeTrustedAdvisorCheckResultCommand";
|
|
85
|
+
import {
|
|
86
|
+
DescribeTrustedAdvisorChecksCommandInput,
|
|
87
|
+
DescribeTrustedAdvisorChecksCommandOutput,
|
|
88
|
+
} from "./commands/DescribeTrustedAdvisorChecksCommand";
|
|
89
|
+
import {
|
|
90
|
+
DescribeTrustedAdvisorCheckSummariesCommandInput,
|
|
91
|
+
DescribeTrustedAdvisorCheckSummariesCommandOutput,
|
|
92
|
+
} from "./commands/DescribeTrustedAdvisorCheckSummariesCommand";
|
|
93
|
+
import {
|
|
94
|
+
RefreshTrustedAdvisorCheckCommandInput,
|
|
95
|
+
RefreshTrustedAdvisorCheckCommandOutput,
|
|
96
|
+
} from "./commands/RefreshTrustedAdvisorCheckCommand";
|
|
97
|
+
import {
|
|
98
|
+
ResolveCaseCommandInput,
|
|
99
|
+
ResolveCaseCommandOutput,
|
|
100
|
+
} from "./commands/ResolveCaseCommand";
|
|
101
|
+
export declare type ServiceInputTypes =
|
|
102
|
+
| AddAttachmentsToSetCommandInput
|
|
103
|
+
| AddCommunicationToCaseCommandInput
|
|
104
|
+
| CreateCaseCommandInput
|
|
105
|
+
| DescribeAttachmentCommandInput
|
|
106
|
+
| DescribeCasesCommandInput
|
|
107
|
+
| DescribeCommunicationsCommandInput
|
|
108
|
+
| DescribeServicesCommandInput
|
|
109
|
+
| DescribeSeverityLevelsCommandInput
|
|
110
|
+
| DescribeTrustedAdvisorCheckRefreshStatusesCommandInput
|
|
111
|
+
| DescribeTrustedAdvisorCheckResultCommandInput
|
|
112
|
+
| DescribeTrustedAdvisorCheckSummariesCommandInput
|
|
113
|
+
| DescribeTrustedAdvisorChecksCommandInput
|
|
114
|
+
| RefreshTrustedAdvisorCheckCommandInput
|
|
115
|
+
| ResolveCaseCommandInput;
|
|
116
|
+
export declare type ServiceOutputTypes =
|
|
117
|
+
| AddAttachmentsToSetCommandOutput
|
|
118
|
+
| AddCommunicationToCaseCommandOutput
|
|
119
|
+
| CreateCaseCommandOutput
|
|
120
|
+
| DescribeAttachmentCommandOutput
|
|
121
|
+
| DescribeCasesCommandOutput
|
|
122
|
+
| DescribeCommunicationsCommandOutput
|
|
123
|
+
| DescribeServicesCommandOutput
|
|
124
|
+
| DescribeSeverityLevelsCommandOutput
|
|
125
|
+
| DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput
|
|
126
|
+
| DescribeTrustedAdvisorCheckResultCommandOutput
|
|
127
|
+
| DescribeTrustedAdvisorCheckSummariesCommandOutput
|
|
128
|
+
| DescribeTrustedAdvisorChecksCommandOutput
|
|
129
|
+
| RefreshTrustedAdvisorCheckCommandOutput
|
|
130
|
+
| ResolveCaseCommandOutput;
|
|
131
|
+
export interface ClientDefaults
|
|
132
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
133
|
+
requestHandler?: __HttpHandler;
|
|
134
|
+
|
|
135
|
+
sha256?: __HashConstructor;
|
|
136
|
+
|
|
137
|
+
urlParser?: __UrlParser;
|
|
138
|
+
|
|
139
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
140
|
+
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
|
|
143
|
+
base64Decoder?: __Decoder;
|
|
144
|
+
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
|
|
147
|
+
utf8Decoder?: __Decoder;
|
|
148
|
+
|
|
149
|
+
utf8Encoder?: __Encoder;
|
|
150
|
+
|
|
151
|
+
runtime?: string;
|
|
152
|
+
|
|
153
|
+
disableHostPrefix?: boolean;
|
|
154
|
+
|
|
155
|
+
maxAttempts?: number | __Provider<number>;
|
|
156
|
+
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
|
|
159
|
+
logger?: __Logger;
|
|
160
|
+
|
|
161
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
162
|
+
|
|
163
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
164
|
+
|
|
165
|
+
serviceId?: string;
|
|
166
|
+
|
|
167
|
+
region?: string | __Provider<string>;
|
|
168
|
+
|
|
169
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
170
|
+
|
|
171
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
172
|
+
|
|
173
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
174
|
+
|
|
175
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
176
|
+
}
|
|
177
|
+
declare type SupportClientConfigType = Partial<
|
|
178
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
179
|
+
> &
|
|
180
|
+
ClientDefaults &
|
|
181
|
+
RegionInputConfig &
|
|
182
|
+
EndpointsInputConfig &
|
|
183
|
+
RetryInputConfig &
|
|
184
|
+
HostHeaderInputConfig &
|
|
185
|
+
AwsAuthInputConfig &
|
|
186
|
+
UserAgentInputConfig;
|
|
187
|
+
|
|
188
|
+
export interface SupportClientConfig extends SupportClientConfigType {}
|
|
189
|
+
declare type SupportClientResolvedConfigType =
|
|
190
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
191
|
+
Required<ClientDefaults> &
|
|
192
|
+
RegionResolvedConfig &
|
|
193
|
+
EndpointsResolvedConfig &
|
|
194
|
+
RetryResolvedConfig &
|
|
195
|
+
HostHeaderResolvedConfig &
|
|
196
|
+
AwsAuthResolvedConfig &
|
|
197
|
+
UserAgentResolvedConfig;
|
|
198
|
+
|
|
199
|
+
export interface SupportClientResolvedConfig
|
|
200
|
+
extends SupportClientResolvedConfigType {}
|
|
201
|
+
|
|
202
|
+
export declare class SupportClient extends __Client<
|
|
203
|
+
__HttpHandlerOptions,
|
|
204
|
+
ServiceInputTypes,
|
|
205
|
+
ServiceOutputTypes,
|
|
206
|
+
SupportClientResolvedConfig
|
|
207
|
+
> {
|
|
208
|
+
readonly config: SupportClientResolvedConfig;
|
|
209
|
+
constructor(configuration: SupportClientConfig);
|
|
210
|
+
|
|
211
|
+
destroy(): void;
|
|
212
|
+
}
|
|
213
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
AddAttachmentsToSetRequest,
|
|
10
|
+
AddAttachmentsToSetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportClientResolvedConfig,
|
|
16
|
+
} from "../SupportClient";
|
|
17
|
+
export interface AddAttachmentsToSetCommandInput
|
|
18
|
+
extends AddAttachmentsToSetRequest {}
|
|
19
|
+
export interface AddAttachmentsToSetCommandOutput
|
|
20
|
+
extends AddAttachmentsToSetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class AddAttachmentsToSetCommand extends $Command<
|
|
24
|
+
AddAttachmentsToSetCommandInput,
|
|
25
|
+
AddAttachmentsToSetCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AddAttachmentsToSetCommandInput;
|
|
29
|
+
constructor(input: AddAttachmentsToSetCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
AddCommunicationToCaseRequest,
|
|
10
|
+
AddCommunicationToCaseResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportClientResolvedConfig,
|
|
16
|
+
} from "../SupportClient";
|
|
17
|
+
export interface AddCommunicationToCaseCommandInput
|
|
18
|
+
extends AddCommunicationToCaseRequest {}
|
|
19
|
+
export interface AddCommunicationToCaseCommandOutput
|
|
20
|
+
extends AddCommunicationToCaseResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class AddCommunicationToCaseCommand extends $Command<
|
|
24
|
+
AddCommunicationToCaseCommandInput,
|
|
25
|
+
AddCommunicationToCaseCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AddCommunicationToCaseCommandInput;
|
|
29
|
+
constructor(input: AddCommunicationToCaseCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AddCommunicationToCaseCommandInput,
|
|
37
|
+
AddCommunicationToCaseCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SupportClientResolvedConfig,
|
|
13
|
+
} from "../SupportClient";
|
|
14
|
+
export interface CreateCaseCommandInput extends CreateCaseRequest {}
|
|
15
|
+
export interface CreateCaseCommandOutput
|
|
16
|
+
extends CreateCaseResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateCaseCommand extends $Command<
|
|
20
|
+
CreateCaseCommandInput,
|
|
21
|
+
CreateCaseCommandOutput,
|
|
22
|
+
SupportClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateCaseCommandInput;
|
|
25
|
+
constructor(input: CreateCaseCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SupportClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateCaseCommandInput, CreateCaseCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DescribeAttachmentRequest,
|
|
10
|
+
DescribeAttachmentResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportClientResolvedConfig,
|
|
16
|
+
} from "../SupportClient";
|
|
17
|
+
export interface DescribeAttachmentCommandInput
|
|
18
|
+
extends DescribeAttachmentRequest {}
|
|
19
|
+
export interface DescribeAttachmentCommandOutput
|
|
20
|
+
extends DescribeAttachmentResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAttachmentCommand extends $Command<
|
|
24
|
+
DescribeAttachmentCommandInput,
|
|
25
|
+
DescribeAttachmentCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAttachmentCommandInput;
|
|
29
|
+
constructor(input: DescribeAttachmentCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DescribeCasesRequest,
|
|
10
|
+
DescribeCasesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportClientResolvedConfig,
|
|
16
|
+
} from "../SupportClient";
|
|
17
|
+
export interface DescribeCasesCommandInput extends DescribeCasesRequest {}
|
|
18
|
+
export interface DescribeCasesCommandOutput
|
|
19
|
+
extends DescribeCasesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeCasesCommand extends $Command<
|
|
23
|
+
DescribeCasesCommandInput,
|
|
24
|
+
DescribeCasesCommandOutput,
|
|
25
|
+
SupportClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeCasesCommandInput;
|
|
28
|
+
constructor(input: DescribeCasesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SupportClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeCasesCommandInput, DescribeCasesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DescribeCommunicationsRequest,
|
|
10
|
+
DescribeCommunicationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportClientResolvedConfig,
|
|
16
|
+
} from "../SupportClient";
|
|
17
|
+
export interface DescribeCommunicationsCommandInput
|
|
18
|
+
extends DescribeCommunicationsRequest {}
|
|
19
|
+
export interface DescribeCommunicationsCommandOutput
|
|
20
|
+
extends DescribeCommunicationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeCommunicationsCommand extends $Command<
|
|
24
|
+
DescribeCommunicationsCommandInput,
|
|
25
|
+
DescribeCommunicationsCommandOutput,
|
|
26
|
+
SupportClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeCommunicationsCommandInput;
|
|
29
|
+
constructor(input: DescribeCommunicationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeCommunicationsCommandInput,
|
|
37
|
+
DescribeCommunicationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|