@aws-sdk/client-support 3.1074.0 → 3.1076.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/dist-cjs/index.js +1022 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -62
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SupportServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -121
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -675
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSupportHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "support",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSupportHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,886 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const o = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "stringEquals", g = "getAttr", h = "sigv4", i = "support", j = { [o]: "Endpoint" }, k = { "fn": g, "argv": [{ [o]: d }, "name"] }, l = { [o]: d }, m = {}, n = [{ [o]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [j]],
|
|
79
|
+
[c, n],
|
|
80
|
+
["aws.partition", n, d],
|
|
81
|
+
[e, [{ [o]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [o]: "UseDualStack" }, b]],
|
|
83
|
+
[f, [k, "aws"]],
|
|
84
|
+
[e, [{ fn: g, argv: [l, "supportsDualStack"] }, b]],
|
|
85
|
+
[f, [k, "aws-cn"]],
|
|
86
|
+
[f, [k, "aws-us-gov"]],
|
|
87
|
+
[e, [{ fn: g, argv: [l, "supportsFIPS"] }, b]],
|
|
88
|
+
[f, [k, "aws-iso"]],
|
|
89
|
+
[f, [k, "aws-iso-b"]]
|
|
90
|
+
],
|
|
91
|
+
results: [
|
|
92
|
+
[a],
|
|
93
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
94
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
95
|
+
[j, m],
|
|
96
|
+
["https://support.us-east-1.amazonaws.com", { authSchemes: [{ name: h, signingName: i, signingRegion: "us-east-1" }] }],
|
|
97
|
+
["https://support.cn-north-1.amazonaws.com.cn", { authSchemes: [{ name: h, signingName: i, signingRegion: "cn-north-1" }] }],
|
|
98
|
+
["https://support.us-gov-west-1.amazonaws.com", { authSchemes: [{ name: h, signingName: i, signingRegion: "us-gov-west-1" }] }],
|
|
99
|
+
["https://support.us-iso-east-1.c2s.ic.gov", { authSchemes: [{ name: h, signingName: i, signingRegion: "us-iso-east-1" }] }],
|
|
100
|
+
["https://support.us-isob-east-1.sc2s.sgov.gov", { authSchemes: [{ name: h, signingName: i, signingRegion: "us-isob-east-1" }] }],
|
|
101
|
+
["https://support-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", m],
|
|
102
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
103
|
+
["https://support-fips.{Region}.{PartitionResult#dnsSuffix}", m],
|
|
104
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
105
|
+
["https://support.{Region}.{PartitionResult#dualStackDnsSuffix}", m],
|
|
106
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
107
|
+
["https://support.{Region}.{PartitionResult#dnsSuffix}", m],
|
|
108
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
109
|
+
]
|
|
110
|
+
};
|
|
111
|
+
const root = 2;
|
|
112
|
+
const r = 100_000_000;
|
|
113
|
+
const nodes = new Int32Array([
|
|
114
|
+
-1, 1, -1,
|
|
115
|
+
0, 18, 3,
|
|
116
|
+
1, 4, r + 16,
|
|
117
|
+
2, 5, r + 16,
|
|
118
|
+
3, 13, 6,
|
|
119
|
+
4, 12, 7,
|
|
120
|
+
5, r + 4, 8,
|
|
121
|
+
7, r + 5, 9,
|
|
122
|
+
8, r + 6, 10,
|
|
123
|
+
10, r + 7, 11,
|
|
124
|
+
11, r + 8, r + 15,
|
|
125
|
+
6, r + 13, r + 14,
|
|
126
|
+
4, 16, 14,
|
|
127
|
+
8, r + 6, 15,
|
|
128
|
+
9, r + 11, r + 12,
|
|
129
|
+
6, 17, r + 10,
|
|
130
|
+
9, r + 9, r + 10,
|
|
131
|
+
3, r + 1, 19,
|
|
132
|
+
4, r + 2, r + 3,
|
|
133
|
+
]);
|
|
134
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
135
|
+
|
|
136
|
+
const cache = new EndpointCache({
|
|
137
|
+
size: 50,
|
|
138
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
139
|
+
});
|
|
140
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
141
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
142
|
+
endpointParams: endpointParams,
|
|
143
|
+
logger: context.logger,
|
|
144
|
+
}));
|
|
145
|
+
};
|
|
146
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
147
|
+
|
|
148
|
+
class SupportServiceException extends ServiceException {
|
|
149
|
+
constructor(options) {
|
|
150
|
+
super(options);
|
|
151
|
+
Object.setPrototypeOf(this, SupportServiceException.prototype);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
class AttachmentLimitExceeded extends SupportServiceException {
|
|
156
|
+
name = "AttachmentLimitExceeded";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "AttachmentLimitExceeded",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, AttachmentLimitExceeded.prototype);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class AttachmentSetExpired extends SupportServiceException {
|
|
168
|
+
name = "AttachmentSetExpired";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "AttachmentSetExpired",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, AttachmentSetExpired.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class AttachmentSetIdNotFound extends SupportServiceException {
|
|
180
|
+
name = "AttachmentSetIdNotFound";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "AttachmentSetIdNotFound",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, AttachmentSetIdNotFound.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class AttachmentSetSizeLimitExceeded extends SupportServiceException {
|
|
192
|
+
name = "AttachmentSetSizeLimitExceeded";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "AttachmentSetSizeLimitExceeded",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, AttachmentSetSizeLimitExceeded.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class InternalServerError extends SupportServiceException {
|
|
204
|
+
name = "InternalServerError";
|
|
205
|
+
$fault = "server";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "InternalServerError",
|
|
209
|
+
$fault: "server",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class CaseIdNotFound extends SupportServiceException {
|
|
216
|
+
name = "CaseIdNotFound";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "CaseIdNotFound",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, CaseIdNotFound.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class AttachmentIdNotFound extends SupportServiceException {
|
|
228
|
+
name = "AttachmentIdNotFound";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "AttachmentIdNotFound",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, AttachmentIdNotFound.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class CaseCreationLimitExceeded extends SupportServiceException {
|
|
240
|
+
name = "CaseCreationLimitExceeded";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "CaseCreationLimitExceeded",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, CaseCreationLimitExceeded.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class DescribeAttachmentLimitExceeded extends SupportServiceException {
|
|
252
|
+
name = "DescribeAttachmentLimitExceeded";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "DescribeAttachmentLimitExceeded",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, DescribeAttachmentLimitExceeded.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class ThrottlingException extends SupportServiceException {
|
|
264
|
+
name = "ThrottlingException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "ThrottlingException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
const _A = "Attachment";
|
|
277
|
+
const _AATS = "AddAttachmentsToSet";
|
|
278
|
+
const _AATSR = "AddAttachmentsToSetRequest";
|
|
279
|
+
const _AATSRd = "AddAttachmentsToSetResponse";
|
|
280
|
+
const _ACTC = "AddCommunicationToCase";
|
|
281
|
+
const _ACTCR = "AddCommunicationToCaseRequest";
|
|
282
|
+
const _ACTCRd = "AddCommunicationToCaseResponse";
|
|
283
|
+
const _AD = "AttachmentDetails";
|
|
284
|
+
const _AINF = "AttachmentIdNotFound";
|
|
285
|
+
const _ALE = "AttachmentLimitExceeded";
|
|
286
|
+
const _AS = "AttachmentSet";
|
|
287
|
+
const _ASE = "AttachmentSetExpired";
|
|
288
|
+
const _ASINF = "AttachmentSetIdNotFound";
|
|
289
|
+
const _ASSLE = "AttachmentSetSizeLimitExceeded";
|
|
290
|
+
const _At = "Attachments";
|
|
291
|
+
const _C = "Category";
|
|
292
|
+
const _CC = "CreateCase";
|
|
293
|
+
const _CCLE = "CaseCreationLimitExceeded";
|
|
294
|
+
const _CCR = "CreateCaseRequest";
|
|
295
|
+
const _CCRr = "CreateCaseResponse";
|
|
296
|
+
const _CD = "CaseDetails";
|
|
297
|
+
const _CINF = "CaseIdNotFound";
|
|
298
|
+
const _CL = "CaseList";
|
|
299
|
+
const _CLa = "CategoryList";
|
|
300
|
+
const _CLo = "CommunicationList";
|
|
301
|
+
const _CTO = "CommunicationTypeOptions";
|
|
302
|
+
const _CTOL = "CommunicationTypeOptionsList";
|
|
303
|
+
const _Co = "Communication";
|
|
304
|
+
const _DA = "DescribeAttachment";
|
|
305
|
+
const _DALE = "DescribeAttachmentLimitExceeded";
|
|
306
|
+
const _DAR = "DescribeAttachmentRequest";
|
|
307
|
+
const _DARe = "DescribeAttachmentResponse";
|
|
308
|
+
const _DC = "DescribeCases";
|
|
309
|
+
const _DCCO = "DescribeCreateCaseOptions";
|
|
310
|
+
const _DCCOR = "DescribeCreateCaseOptionsRequest";
|
|
311
|
+
const _DCCORe = "DescribeCreateCaseOptionsResponse";
|
|
312
|
+
const _DCR = "DescribeCasesRequest";
|
|
313
|
+
const _DCRe = "DescribeCasesResponse";
|
|
314
|
+
const _DCRes = "DescribeCommunicationsRequest";
|
|
315
|
+
const _DCResc = "DescribeCommunicationsResponse";
|
|
316
|
+
const _DCe = "DescribeCommunications";
|
|
317
|
+
const _DI = "DateInterval";
|
|
318
|
+
const _DS = "DescribeServices";
|
|
319
|
+
const _DSL = "DescribeSeverityLevels";
|
|
320
|
+
const _DSLR = "DescribeSeverityLevelsRequest";
|
|
321
|
+
const _DSLRe = "DescribeSeverityLevelsResponse";
|
|
322
|
+
const _DSLRes = "DescribeSupportedLanguagesRequest";
|
|
323
|
+
const _DSLResc = "DescribeSupportedLanguagesResponse";
|
|
324
|
+
const _DSLe = "DescribeSupportedLanguages";
|
|
325
|
+
const _DSR = "DescribeServicesRequest";
|
|
326
|
+
const _DSRe = "DescribeServicesResponse";
|
|
327
|
+
const _DTAC = "DescribeTrustedAdvisorChecks";
|
|
328
|
+
const _DTACR = "DescribeTrustedAdvisorChecksRequest";
|
|
329
|
+
const _DTACRR = "DescribeTrustedAdvisorCheckResultRequest";
|
|
330
|
+
const _DTACRRe = "DescribeTrustedAdvisorCheckResultResponse";
|
|
331
|
+
const _DTACRS = "DescribeTrustedAdvisorCheckRefreshStatuses";
|
|
332
|
+
const _DTACRSR = "DescribeTrustedAdvisorCheckRefreshStatusesRequest";
|
|
333
|
+
const _DTACRSRe = "DescribeTrustedAdvisorCheckRefreshStatusesResponse";
|
|
334
|
+
const _DTACRe = "DescribeTrustedAdvisorChecksResponse";
|
|
335
|
+
const _DTACRes = "DescribeTrustedAdvisorCheckResult";
|
|
336
|
+
const _DTACS = "DescribeTrustedAdvisorCheckSummaries";
|
|
337
|
+
const _DTACSR = "DescribeTrustedAdvisorCheckSummariesRequest";
|
|
338
|
+
const _DTACSRe = "DescribeTrustedAdvisorCheckSummariesResponse";
|
|
339
|
+
const _DWSL = "DatesWithoutSupportList";
|
|
340
|
+
const _ISE = "InternalServerError";
|
|
341
|
+
const _RC = "ResolveCase";
|
|
342
|
+
const _RCC = "RecentCaseCommunications";
|
|
343
|
+
const _RCR = "ResolveCaseRequest";
|
|
344
|
+
const _RCRe = "ResolveCaseResponse";
|
|
345
|
+
const _RTAC = "RefreshTrustedAdvisorCheck";
|
|
346
|
+
const _RTACR = "RefreshTrustedAdvisorCheckRequest";
|
|
347
|
+
const _RTACRe = "RefreshTrustedAdvisorCheckResponse";
|
|
348
|
+
const _S = "Service";
|
|
349
|
+
const _SH = "SupportedHour";
|
|
350
|
+
const _SHL = "SupportedHoursList";
|
|
351
|
+
const _SL = "SeverityLevel";
|
|
352
|
+
const _SLL = "SeverityLevelsList";
|
|
353
|
+
const _SLLu = "SupportedLanguagesList";
|
|
354
|
+
const _SLe = "ServiceList";
|
|
355
|
+
const _SLt = "StringList";
|
|
356
|
+
const _SLu = "SupportedLanguage";
|
|
357
|
+
const _TACD = "TrustedAdvisorCheckDescription";
|
|
358
|
+
const _TACL = "TrustedAdvisorCheckList";
|
|
359
|
+
const _TACOS = "TrustedAdvisorCostOptimizingSummary";
|
|
360
|
+
const _TACR = "TrustedAdvisorCheckResult";
|
|
361
|
+
const _TACRS = "TrustedAdvisorCheckRefreshStatus";
|
|
362
|
+
const _TACRSL = "TrustedAdvisorCheckRefreshStatusList";
|
|
363
|
+
const _TACS = "TrustedAdvisorCheckSummary";
|
|
364
|
+
const _TACSL = "TrustedAdvisorCheckSummaryList";
|
|
365
|
+
const _TACSS = "TrustedAdvisorCategorySpecificSummary";
|
|
366
|
+
const _TARD = "TrustedAdvisorResourceDetail";
|
|
367
|
+
const _TARDL = "TrustedAdvisorResourceDetailList";
|
|
368
|
+
const _TARS = "TrustedAdvisorResourcesSummary";
|
|
369
|
+
const _TE = "ThrottlingException";
|
|
370
|
+
const _a = "attachments";
|
|
371
|
+
const _aI = "attachmentId";
|
|
372
|
+
const _aQE = "awsQueryError";
|
|
373
|
+
const _aS = "attachmentSet";
|
|
374
|
+
const _aSI = "attachmentSetId";
|
|
375
|
+
const _aT = "afterTime";
|
|
376
|
+
const _at = "attachment";
|
|
377
|
+
const _b = "body";
|
|
378
|
+
const _bT = "beforeTime";
|
|
379
|
+
const _c = "client";
|
|
380
|
+
const _cB = "communicationBody";
|
|
381
|
+
const _cC = "categoryCode";
|
|
382
|
+
const _cEA = "ccEmailAddresses";
|
|
383
|
+
const _cI = "caseId";
|
|
384
|
+
const _cIL = "caseIdList";
|
|
385
|
+
const _cIh = "checkIds";
|
|
386
|
+
const _cIhe = "checkId";
|
|
387
|
+
const _cO = "costOptimizing";
|
|
388
|
+
const _cSS = "categorySpecificSummary";
|
|
389
|
+
const _cT = "communicationTypes";
|
|
390
|
+
const _ca = "cases";
|
|
391
|
+
const _cat = "categories";
|
|
392
|
+
const _cate = "category";
|
|
393
|
+
const _ch = "checks";
|
|
394
|
+
const _co = "code";
|
|
395
|
+
const _com = "communications";
|
|
396
|
+
const _d = "data";
|
|
397
|
+
const _dI = "displayId";
|
|
398
|
+
const _dWS = "datesWithoutSupport";
|
|
399
|
+
const _de = "description";
|
|
400
|
+
const _di = "display";
|
|
401
|
+
const _e = "error";
|
|
402
|
+
const _eDT = "endDateTime";
|
|
403
|
+
const _eMS = "estimatedMonthlySavings";
|
|
404
|
+
const _ePMS = "estimatedPercentMonthlySavings";
|
|
405
|
+
const _eT = "expiryTime";
|
|
406
|
+
const _eTn = "endTime";
|
|
407
|
+
const _fCS = "finalCaseStatus";
|
|
408
|
+
const _fN = "fileName";
|
|
409
|
+
const _fR = "flaggedResources";
|
|
410
|
+
const _hE = "httpError";
|
|
411
|
+
const _hFR = "hasFlaggedResources";
|
|
412
|
+
const _i = "id";
|
|
413
|
+
const _iC = "includeCommunications";
|
|
414
|
+
const _iCS = "initialCaseStatus";
|
|
415
|
+
const _iRC = "includeResolvedCases";
|
|
416
|
+
const _iS = "isSuppressed";
|
|
417
|
+
const _iT = "issueType";
|
|
418
|
+
const _l = "language";
|
|
419
|
+
const _lA = "languageAvailability";
|
|
420
|
+
const _m = "message";
|
|
421
|
+
const _mR = "maxResults";
|
|
422
|
+
const _mUNR = "millisUntilNextRefreshable";
|
|
423
|
+
const _me = "metadata";
|
|
424
|
+
const _n = "name";
|
|
425
|
+
const _nT = "nextToken";
|
|
426
|
+
const _r = "result";
|
|
427
|
+
const _rC = "recentCommunications";
|
|
428
|
+
const _rF = "resourcesFlagged";
|
|
429
|
+
const _rI = "resourceId";
|
|
430
|
+
const _rIe = "resourcesIgnored";
|
|
431
|
+
const _rP = "resourcesProcessed";
|
|
432
|
+
const _rS = "resourcesSummary";
|
|
433
|
+
const _rSe = "resourcesSuppressed";
|
|
434
|
+
const _re = "region";
|
|
435
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.support";
|
|
436
|
+
const _sB = "submittedBy";
|
|
437
|
+
const _sC = "serviceCode";
|
|
438
|
+
const _sCL = "serviceCodeList";
|
|
439
|
+
const _sCe = "severityCode";
|
|
440
|
+
const _sDT = "startDateTime";
|
|
441
|
+
const _sH = "supportedHours";
|
|
442
|
+
const _sL = "severityLevels";
|
|
443
|
+
const _sLu = "supportedLanguages";
|
|
444
|
+
const _sT = "startTime";
|
|
445
|
+
const _se = "server";
|
|
446
|
+
const _ser = "services";
|
|
447
|
+
const _sp = "sparse";
|
|
448
|
+
const _st = "status";
|
|
449
|
+
const _sta = "statuses";
|
|
450
|
+
const _su = "subject";
|
|
451
|
+
const _sum = "summaries";
|
|
452
|
+
const _t = "type";
|
|
453
|
+
const _tC = "timeCreated";
|
|
454
|
+
const _ti = "timestamp";
|
|
455
|
+
const n0 = "com.amazonaws.support";
|
|
456
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
457
|
+
var SupportServiceException$ = [-3, _s, "SupportServiceException", 0, [], []];
|
|
458
|
+
_s_registry.registerError(SupportServiceException$, SupportServiceException);
|
|
459
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
460
|
+
var AttachmentIdNotFound$ = [-3, n0, _AINF,
|
|
461
|
+
{ [_e]: _c },
|
|
462
|
+
[_m],
|
|
463
|
+
[0]
|
|
464
|
+
];
|
|
465
|
+
n0_registry.registerError(AttachmentIdNotFound$, AttachmentIdNotFound);
|
|
466
|
+
var AttachmentLimitExceeded$ = [-3, n0, _ALE,
|
|
467
|
+
{ [_e]: _c },
|
|
468
|
+
[_m],
|
|
469
|
+
[0]
|
|
470
|
+
];
|
|
471
|
+
n0_registry.registerError(AttachmentLimitExceeded$, AttachmentLimitExceeded);
|
|
472
|
+
var AttachmentSetExpired$ = [-3, n0, _ASE,
|
|
473
|
+
{ [_e]: _c },
|
|
474
|
+
[_m],
|
|
475
|
+
[0]
|
|
476
|
+
];
|
|
477
|
+
n0_registry.registerError(AttachmentSetExpired$, AttachmentSetExpired);
|
|
478
|
+
var AttachmentSetIdNotFound$ = [-3, n0, _ASINF,
|
|
479
|
+
{ [_e]: _c },
|
|
480
|
+
[_m],
|
|
481
|
+
[0]
|
|
482
|
+
];
|
|
483
|
+
n0_registry.registerError(AttachmentSetIdNotFound$, AttachmentSetIdNotFound);
|
|
484
|
+
var AttachmentSetSizeLimitExceeded$ = [-3, n0, _ASSLE,
|
|
485
|
+
{ [_e]: _c },
|
|
486
|
+
[_m],
|
|
487
|
+
[0]
|
|
488
|
+
];
|
|
489
|
+
n0_registry.registerError(AttachmentSetSizeLimitExceeded$, AttachmentSetSizeLimitExceeded);
|
|
490
|
+
var CaseCreationLimitExceeded$ = [-3, n0, _CCLE,
|
|
491
|
+
{ [_e]: _c },
|
|
492
|
+
[_m],
|
|
493
|
+
[0]
|
|
494
|
+
];
|
|
495
|
+
n0_registry.registerError(CaseCreationLimitExceeded$, CaseCreationLimitExceeded);
|
|
496
|
+
var CaseIdNotFound$ = [-3, n0, _CINF,
|
|
497
|
+
{ [_e]: _c },
|
|
498
|
+
[_m],
|
|
499
|
+
[0]
|
|
500
|
+
];
|
|
501
|
+
n0_registry.registerError(CaseIdNotFound$, CaseIdNotFound);
|
|
502
|
+
var DescribeAttachmentLimitExceeded$ = [-3, n0, _DALE,
|
|
503
|
+
{ [_e]: _c },
|
|
504
|
+
[_m],
|
|
505
|
+
[0]
|
|
506
|
+
];
|
|
507
|
+
n0_registry.registerError(DescribeAttachmentLimitExceeded$, DescribeAttachmentLimitExceeded);
|
|
508
|
+
var InternalServerError$ = [-3, n0, _ISE,
|
|
509
|
+
{ [_e]: _se },
|
|
510
|
+
[_m],
|
|
511
|
+
[0]
|
|
512
|
+
];
|
|
513
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
514
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
515
|
+
{ [_aQE]: [`Throttling`, 400], [_e]: _c, [_hE]: 400 },
|
|
516
|
+
[_m],
|
|
517
|
+
[0]
|
|
518
|
+
];
|
|
519
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
520
|
+
const errorTypeRegistries = [
|
|
521
|
+
_s_registry,
|
|
522
|
+
n0_registry,
|
|
523
|
+
];
|
|
524
|
+
var AddAttachmentsToSetRequest$ = [3, n0, _AATSR,
|
|
525
|
+
0,
|
|
526
|
+
[_a, _aSI],
|
|
527
|
+
[() => Attachments, 0], 1
|
|
528
|
+
];
|
|
529
|
+
var AddAttachmentsToSetResponse$ = [3, n0, _AATSRd,
|
|
530
|
+
0,
|
|
531
|
+
[_aSI, _eT],
|
|
532
|
+
[0, 0]
|
|
533
|
+
];
|
|
534
|
+
var AddCommunicationToCaseRequest$ = [3, n0, _ACTCR,
|
|
535
|
+
0,
|
|
536
|
+
[_cB, _cI, _cEA, _aSI],
|
|
537
|
+
[0, 0, 64 | 0, 0], 1
|
|
538
|
+
];
|
|
539
|
+
var AddCommunicationToCaseResponse$ = [3, n0, _ACTCRd,
|
|
540
|
+
0,
|
|
541
|
+
[_r],
|
|
542
|
+
[2]
|
|
543
|
+
];
|
|
544
|
+
var Attachment$ = [3, n0, _A,
|
|
545
|
+
0,
|
|
546
|
+
[_fN, _d],
|
|
547
|
+
[0, 21]
|
|
548
|
+
];
|
|
549
|
+
var AttachmentDetails$ = [3, n0, _AD,
|
|
550
|
+
0,
|
|
551
|
+
[_aI, _fN],
|
|
552
|
+
[0, 0]
|
|
553
|
+
];
|
|
554
|
+
var CaseDetails$ = [3, n0, _CD,
|
|
555
|
+
0,
|
|
556
|
+
[_cI, _dI, _su, _st, _sC, _cC, _sCe, _sB, _tC, _rC, _cEA, _l],
|
|
557
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => RecentCaseCommunications$, 64 | 0, 0]
|
|
558
|
+
];
|
|
559
|
+
var Category$ = [3, n0, _C,
|
|
560
|
+
0,
|
|
561
|
+
[_co, _n],
|
|
562
|
+
[0, 0]
|
|
563
|
+
];
|
|
564
|
+
var Communication$ = [3, n0, _Co,
|
|
565
|
+
0,
|
|
566
|
+
[_cI, _b, _sB, _tC, _aS],
|
|
567
|
+
[0, 0, 0, 0, () => AttachmentSet]
|
|
568
|
+
];
|
|
569
|
+
var CommunicationTypeOptions$ = [3, n0, _CTO,
|
|
570
|
+
0,
|
|
571
|
+
[_t, _sH, _dWS],
|
|
572
|
+
[0, () => SupportedHoursList, () => DatesWithoutSupportList]
|
|
573
|
+
];
|
|
574
|
+
var CreateCaseRequest$ = [3, n0, _CCR,
|
|
575
|
+
0,
|
|
576
|
+
[_su, _cB, _sC, _sCe, _cC, _cEA, _l, _iT, _aSI],
|
|
577
|
+
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 0], 2
|
|
578
|
+
];
|
|
579
|
+
var CreateCaseResponse$ = [3, n0, _CCRr,
|
|
580
|
+
0,
|
|
581
|
+
[_cI],
|
|
582
|
+
[0]
|
|
583
|
+
];
|
|
584
|
+
var DateInterval$ = [3, n0, _DI,
|
|
585
|
+
0,
|
|
586
|
+
[_sDT, _eDT],
|
|
587
|
+
[0, 0]
|
|
588
|
+
];
|
|
589
|
+
var DescribeAttachmentRequest$ = [3, n0, _DAR,
|
|
590
|
+
0,
|
|
591
|
+
[_aI],
|
|
592
|
+
[0], 1
|
|
593
|
+
];
|
|
594
|
+
var DescribeAttachmentResponse$ = [3, n0, _DARe,
|
|
595
|
+
0,
|
|
596
|
+
[_at],
|
|
597
|
+
[() => Attachment$]
|
|
598
|
+
];
|
|
599
|
+
var DescribeCasesRequest$ = [3, n0, _DCR,
|
|
600
|
+
0,
|
|
601
|
+
[_cIL, _dI, _aT, _bT, _iRC, _nT, _mR, _l, _iC],
|
|
602
|
+
[64 | 0, 0, 0, 0, 2, 0, 1, 0, 2]
|
|
603
|
+
];
|
|
604
|
+
var DescribeCasesResponse$ = [3, n0, _DCRe,
|
|
605
|
+
0,
|
|
606
|
+
[_ca, _nT],
|
|
607
|
+
[() => CaseList, 0]
|
|
608
|
+
];
|
|
609
|
+
var DescribeCommunicationsRequest$ = [3, n0, _DCRes,
|
|
610
|
+
0,
|
|
611
|
+
[_cI, _bT, _aT, _nT, _mR],
|
|
612
|
+
[0, 0, 0, 0, 1], 1
|
|
613
|
+
];
|
|
614
|
+
var DescribeCommunicationsResponse$ = [3, n0, _DCResc,
|
|
615
|
+
0,
|
|
616
|
+
[_com, _nT],
|
|
617
|
+
[() => CommunicationList, 0]
|
|
618
|
+
];
|
|
619
|
+
var DescribeCreateCaseOptionsRequest$ = [3, n0, _DCCOR,
|
|
620
|
+
0,
|
|
621
|
+
[_iT, _sC, _l, _cC],
|
|
622
|
+
[0, 0, 0, 0], 4
|
|
623
|
+
];
|
|
624
|
+
var DescribeCreateCaseOptionsResponse$ = [3, n0, _DCCORe,
|
|
625
|
+
0,
|
|
626
|
+
[_lA, _cT],
|
|
627
|
+
[0, () => CommunicationTypeOptionsList]
|
|
628
|
+
];
|
|
629
|
+
var DescribeServicesRequest$ = [3, n0, _DSR,
|
|
630
|
+
0,
|
|
631
|
+
[_sCL, _l],
|
|
632
|
+
[64 | 0, 0]
|
|
633
|
+
];
|
|
634
|
+
var DescribeServicesResponse$ = [3, n0, _DSRe,
|
|
635
|
+
0,
|
|
636
|
+
[_ser],
|
|
637
|
+
[() => ServiceList]
|
|
638
|
+
];
|
|
639
|
+
var DescribeSeverityLevelsRequest$ = [3, n0, _DSLR,
|
|
640
|
+
0,
|
|
641
|
+
[_l],
|
|
642
|
+
[0]
|
|
643
|
+
];
|
|
644
|
+
var DescribeSeverityLevelsResponse$ = [3, n0, _DSLRe,
|
|
645
|
+
0,
|
|
646
|
+
[_sL],
|
|
647
|
+
[() => SeverityLevelsList]
|
|
648
|
+
];
|
|
649
|
+
var DescribeSupportedLanguagesRequest$ = [3, n0, _DSLRes,
|
|
650
|
+
0,
|
|
651
|
+
[_iT, _sC, _cC],
|
|
652
|
+
[0, 0, 0], 3
|
|
653
|
+
];
|
|
654
|
+
var DescribeSupportedLanguagesResponse$ = [3, n0, _DSLResc,
|
|
655
|
+
0,
|
|
656
|
+
[_sLu],
|
|
657
|
+
[() => SupportedLanguagesList]
|
|
658
|
+
];
|
|
659
|
+
var DescribeTrustedAdvisorCheckRefreshStatusesRequest$ = [3, n0, _DTACRSR,
|
|
660
|
+
0,
|
|
661
|
+
[_cIh],
|
|
662
|
+
[[() => StringList, 0]], 1
|
|
663
|
+
];
|
|
664
|
+
var DescribeTrustedAdvisorCheckRefreshStatusesResponse$ = [3, n0, _DTACRSRe,
|
|
665
|
+
0,
|
|
666
|
+
[_sta],
|
|
667
|
+
[() => TrustedAdvisorCheckRefreshStatusList], 1
|
|
668
|
+
];
|
|
669
|
+
var DescribeTrustedAdvisorCheckResultRequest$ = [3, n0, _DTACRR,
|
|
670
|
+
0,
|
|
671
|
+
[_cIhe, _l],
|
|
672
|
+
[0, 0], 1
|
|
673
|
+
];
|
|
674
|
+
var DescribeTrustedAdvisorCheckResultResponse$ = [3, n0, _DTACRRe,
|
|
675
|
+
0,
|
|
676
|
+
[_r],
|
|
677
|
+
[[() => TrustedAdvisorCheckResult$, 0]]
|
|
678
|
+
];
|
|
679
|
+
var DescribeTrustedAdvisorChecksRequest$ = [3, n0, _DTACR,
|
|
680
|
+
0,
|
|
681
|
+
[_l],
|
|
682
|
+
[0], 1
|
|
683
|
+
];
|
|
684
|
+
var DescribeTrustedAdvisorChecksResponse$ = [3, n0, _DTACRe,
|
|
685
|
+
0,
|
|
686
|
+
[_ch],
|
|
687
|
+
[[() => TrustedAdvisorCheckList, 0]], 1
|
|
688
|
+
];
|
|
689
|
+
var DescribeTrustedAdvisorCheckSummariesRequest$ = [3, n0, _DTACSR,
|
|
690
|
+
0,
|
|
691
|
+
[_cIh],
|
|
692
|
+
[[() => StringList, 0]], 1
|
|
693
|
+
];
|
|
694
|
+
var DescribeTrustedAdvisorCheckSummariesResponse$ = [3, n0, _DTACSRe,
|
|
695
|
+
0,
|
|
696
|
+
[_sum],
|
|
697
|
+
[() => TrustedAdvisorCheckSummaryList], 1
|
|
698
|
+
];
|
|
699
|
+
var RecentCaseCommunications$ = [3, n0, _RCC,
|
|
700
|
+
0,
|
|
701
|
+
[_com, _nT],
|
|
702
|
+
[() => CommunicationList, 0]
|
|
703
|
+
];
|
|
704
|
+
var RefreshTrustedAdvisorCheckRequest$ = [3, n0, _RTACR,
|
|
705
|
+
0,
|
|
706
|
+
[_cIhe],
|
|
707
|
+
[0], 1
|
|
708
|
+
];
|
|
709
|
+
var RefreshTrustedAdvisorCheckResponse$ = [3, n0, _RTACRe,
|
|
710
|
+
0,
|
|
711
|
+
[_st],
|
|
712
|
+
[() => TrustedAdvisorCheckRefreshStatus$], 1
|
|
713
|
+
];
|
|
714
|
+
var ResolveCaseRequest$ = [3, n0, _RCR,
|
|
715
|
+
0,
|
|
716
|
+
[_cI],
|
|
717
|
+
[0]
|
|
718
|
+
];
|
|
719
|
+
var ResolveCaseResponse$ = [3, n0, _RCRe,
|
|
720
|
+
0,
|
|
721
|
+
[_iCS, _fCS],
|
|
722
|
+
[0, 0]
|
|
723
|
+
];
|
|
724
|
+
var Service$ = [3, n0, _S,
|
|
725
|
+
0,
|
|
726
|
+
[_co, _n, _cat],
|
|
727
|
+
[0, 0, () => CategoryList]
|
|
728
|
+
];
|
|
729
|
+
var SeverityLevel$ = [3, n0, _SL,
|
|
730
|
+
0,
|
|
731
|
+
[_co, _n],
|
|
732
|
+
[0, 0]
|
|
733
|
+
];
|
|
734
|
+
var SupportedHour$ = [3, n0, _SH,
|
|
735
|
+
0,
|
|
736
|
+
[_sT, _eTn],
|
|
737
|
+
[0, 0]
|
|
738
|
+
];
|
|
739
|
+
var SupportedLanguage$ = [3, n0, _SLu,
|
|
740
|
+
0,
|
|
741
|
+
[_co, _l, _di],
|
|
742
|
+
[0, 0, 0]
|
|
743
|
+
];
|
|
744
|
+
var TrustedAdvisorCategorySpecificSummary$ = [3, n0, _TACSS,
|
|
745
|
+
0,
|
|
746
|
+
[_cO],
|
|
747
|
+
[() => TrustedAdvisorCostOptimizingSummary$]
|
|
748
|
+
];
|
|
749
|
+
var TrustedAdvisorCheckDescription$ = [3, n0, _TACD,
|
|
750
|
+
0,
|
|
751
|
+
[_i, _n, _de, _cate, _me],
|
|
752
|
+
[0, 0, 0, 0, [() => StringList, 0]], 5
|
|
753
|
+
];
|
|
754
|
+
var TrustedAdvisorCheckRefreshStatus$ = [3, n0, _TACRS,
|
|
755
|
+
0,
|
|
756
|
+
[_cIhe, _st, _mUNR],
|
|
757
|
+
[0, 0, 1], 3
|
|
758
|
+
];
|
|
759
|
+
var TrustedAdvisorCheckResult$ = [3, n0, _TACR,
|
|
760
|
+
0,
|
|
761
|
+
[_cIhe, _ti, _st, _rS, _cSS, _fR],
|
|
762
|
+
[0, 0, 0, () => TrustedAdvisorResourcesSummary$, () => TrustedAdvisorCategorySpecificSummary$, [() => TrustedAdvisorResourceDetailList, 0]], 6
|
|
763
|
+
];
|
|
764
|
+
var TrustedAdvisorCheckSummary$ = [3, n0, _TACS,
|
|
765
|
+
0,
|
|
766
|
+
[_cIhe, _ti, _st, _rS, _cSS, _hFR],
|
|
767
|
+
[0, 0, 0, () => TrustedAdvisorResourcesSummary$, () => TrustedAdvisorCategorySpecificSummary$, 2], 5
|
|
768
|
+
];
|
|
769
|
+
var TrustedAdvisorCostOptimizingSummary$ = [3, n0, _TACOS,
|
|
770
|
+
0,
|
|
771
|
+
[_eMS, _ePMS],
|
|
772
|
+
[1, 1], 2
|
|
773
|
+
];
|
|
774
|
+
var TrustedAdvisorResourceDetail$ = [3, n0, _TARD,
|
|
775
|
+
0,
|
|
776
|
+
[_st, _rI, _me, _re, _iS],
|
|
777
|
+
[0, 0, [() => StringList, 0], 0, 2], 3
|
|
778
|
+
];
|
|
779
|
+
var TrustedAdvisorResourcesSummary$ = [3, n0, _TARS,
|
|
780
|
+
0,
|
|
781
|
+
[_rP, _rF, _rIe, _rSe],
|
|
782
|
+
[1, 1, 1, 1], 4
|
|
783
|
+
];
|
|
784
|
+
var Attachments = [1, n0, _At,
|
|
785
|
+
0, () => Attachment$
|
|
786
|
+
];
|
|
787
|
+
var AttachmentSet = [1, n0, _AS,
|
|
788
|
+
0, () => AttachmentDetails$
|
|
789
|
+
];
|
|
790
|
+
var CaseList = [1, n0, _CL,
|
|
791
|
+
0, () => CaseDetails$
|
|
792
|
+
];
|
|
793
|
+
var CategoryList = [1, n0, _CLa,
|
|
794
|
+
0, () => Category$
|
|
795
|
+
];
|
|
796
|
+
var CommunicationList = [1, n0, _CLo,
|
|
797
|
+
0, () => Communication$
|
|
798
|
+
];
|
|
799
|
+
var CommunicationTypeOptionsList = [1, n0, _CTOL,
|
|
800
|
+
0, () => CommunicationTypeOptions$
|
|
801
|
+
];
|
|
802
|
+
var DatesWithoutSupportList = [1, n0, _DWSL,
|
|
803
|
+
0, () => DateInterval$
|
|
804
|
+
];
|
|
805
|
+
var ServiceList = [1, n0, _SLe,
|
|
806
|
+
0, () => Service$
|
|
807
|
+
];
|
|
808
|
+
var SeverityLevelsList = [1, n0, _SLL,
|
|
809
|
+
0, () => SeverityLevel$
|
|
810
|
+
];
|
|
811
|
+
var StringList = [1, n0, _SLt,
|
|
812
|
+
{ [_sp]: 1 }, 0
|
|
813
|
+
];
|
|
814
|
+
var SupportedHoursList = [1, n0, _SHL,
|
|
815
|
+
0, () => SupportedHour$
|
|
816
|
+
];
|
|
817
|
+
var SupportedLanguagesList = [1, n0, _SLLu,
|
|
818
|
+
0, () => SupportedLanguage$
|
|
819
|
+
];
|
|
820
|
+
var TrustedAdvisorCheckList = [1, n0, _TACL,
|
|
821
|
+
0, [() => TrustedAdvisorCheckDescription$,
|
|
822
|
+
0]
|
|
823
|
+
];
|
|
824
|
+
var TrustedAdvisorCheckRefreshStatusList = [1, n0, _TACRSL,
|
|
825
|
+
0, () => TrustedAdvisorCheckRefreshStatus$
|
|
826
|
+
];
|
|
827
|
+
var TrustedAdvisorCheckSummaryList = [1, n0, _TACSL,
|
|
828
|
+
0, () => TrustedAdvisorCheckSummary$
|
|
829
|
+
];
|
|
830
|
+
var TrustedAdvisorResourceDetailList = [1, n0, _TARDL,
|
|
831
|
+
0, [() => TrustedAdvisorResourceDetail$,
|
|
832
|
+
0]
|
|
833
|
+
];
|
|
834
|
+
var AddAttachmentsToSet$ = [9, n0, _AATS,
|
|
835
|
+
0, () => AddAttachmentsToSetRequest$, () => AddAttachmentsToSetResponse$
|
|
836
|
+
];
|
|
837
|
+
var AddCommunicationToCase$ = [9, n0, _ACTC,
|
|
838
|
+
0, () => AddCommunicationToCaseRequest$, () => AddCommunicationToCaseResponse$
|
|
839
|
+
];
|
|
840
|
+
var CreateCase$ = [9, n0, _CC,
|
|
841
|
+
0, () => CreateCaseRequest$, () => CreateCaseResponse$
|
|
842
|
+
];
|
|
843
|
+
var DescribeAttachment$ = [9, n0, _DA,
|
|
844
|
+
0, () => DescribeAttachmentRequest$, () => DescribeAttachmentResponse$
|
|
845
|
+
];
|
|
846
|
+
var DescribeCases$ = [9, n0, _DC,
|
|
847
|
+
0, () => DescribeCasesRequest$, () => DescribeCasesResponse$
|
|
848
|
+
];
|
|
849
|
+
var DescribeCommunications$ = [9, n0, _DCe,
|
|
850
|
+
0, () => DescribeCommunicationsRequest$, () => DescribeCommunicationsResponse$
|
|
851
|
+
];
|
|
852
|
+
var DescribeCreateCaseOptions$ = [9, n0, _DCCO,
|
|
853
|
+
0, () => DescribeCreateCaseOptionsRequest$, () => DescribeCreateCaseOptionsResponse$
|
|
854
|
+
];
|
|
855
|
+
var DescribeServices$ = [9, n0, _DS,
|
|
856
|
+
0, () => DescribeServicesRequest$, () => DescribeServicesResponse$
|
|
857
|
+
];
|
|
858
|
+
var DescribeSeverityLevels$ = [9, n0, _DSL,
|
|
859
|
+
0, () => DescribeSeverityLevelsRequest$, () => DescribeSeverityLevelsResponse$
|
|
860
|
+
];
|
|
861
|
+
var DescribeSupportedLanguages$ = [9, n0, _DSLe,
|
|
862
|
+
0, () => DescribeSupportedLanguagesRequest$, () => DescribeSupportedLanguagesResponse$
|
|
863
|
+
];
|
|
864
|
+
var DescribeTrustedAdvisorCheckRefreshStatuses$ = [9, n0, _DTACRS,
|
|
865
|
+
0, () => DescribeTrustedAdvisorCheckRefreshStatusesRequest$, () => DescribeTrustedAdvisorCheckRefreshStatusesResponse$
|
|
866
|
+
];
|
|
867
|
+
var DescribeTrustedAdvisorCheckResult$ = [9, n0, _DTACRes,
|
|
868
|
+
0, () => DescribeTrustedAdvisorCheckResultRequest$, () => DescribeTrustedAdvisorCheckResultResponse$
|
|
869
|
+
];
|
|
870
|
+
var DescribeTrustedAdvisorChecks$ = [9, n0, _DTAC,
|
|
871
|
+
0, () => DescribeTrustedAdvisorChecksRequest$, () => DescribeTrustedAdvisorChecksResponse$
|
|
872
|
+
];
|
|
873
|
+
var DescribeTrustedAdvisorCheckSummaries$ = [9, n0, _DTACS,
|
|
874
|
+
0, () => DescribeTrustedAdvisorCheckSummariesRequest$, () => DescribeTrustedAdvisorCheckSummariesResponse$
|
|
875
|
+
];
|
|
876
|
+
var RefreshTrustedAdvisorCheck$ = [9, n0, _RTAC,
|
|
877
|
+
0, () => RefreshTrustedAdvisorCheckRequest$, () => RefreshTrustedAdvisorCheckResponse$
|
|
878
|
+
];
|
|
879
|
+
var ResolveCase$ = [9, n0, _RC,
|
|
880
|
+
0, () => ResolveCaseRequest$, () => ResolveCaseResponse$
|
|
881
|
+
];
|
|
882
|
+
|
|
883
|
+
const getRuntimeConfig$1 = (config) => {
|
|
884
|
+
return {
|
|
885
|
+
apiVersion: "2013-04-15",
|
|
886
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
887
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
888
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
889
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
890
|
+
extensions: config?.extensions ?? [],
|
|
891
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSupportHttpAuthSchemeProvider,
|
|
892
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
893
|
+
{
|
|
894
|
+
schemeId: "aws.auth#sigv4",
|
|
895
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
896
|
+
signer: new AwsSdkSigV4Signer(),
|
|
897
|
+
},
|
|
898
|
+
],
|
|
899
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
900
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
901
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
902
|
+
defaultNamespace: "com.amazonaws.support",
|
|
903
|
+
errorTypeRegistries,
|
|
904
|
+
xmlNamespace: "http://support.amazonaws.com/doc/2013-04-15/",
|
|
905
|
+
version: "2013-04-15",
|
|
906
|
+
serviceTarget: "AWSSupport_20130415",
|
|
907
|
+
},
|
|
908
|
+
serviceId: config?.serviceId ?? "Support",
|
|
909
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
910
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
911
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
912
|
+
};
|
|
913
|
+
};
|
|
914
|
+
|
|
915
|
+
const getRuntimeConfig = (config) => {
|
|
916
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
917
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
918
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
919
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
920
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
921
|
+
const loaderConfig = {
|
|
922
|
+
profile: config?.profile,
|
|
923
|
+
logger: clientSharedValues.logger,
|
|
924
|
+
};
|
|
925
|
+
return {
|
|
926
|
+
...clientSharedValues,
|
|
927
|
+
...config,
|
|
928
|
+
runtime: "node",
|
|
929
|
+
defaultsMode,
|
|
930
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
931
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
932
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
933
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
934
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
935
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
936
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
937
|
+
retryMode: config?.retryMode ??
|
|
938
|
+
loadConfig({
|
|
939
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
940
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
941
|
+
}, config),
|
|
942
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
943
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
944
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
945
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
946
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
947
|
+
};
|
|
948
|
+
};
|
|
949
|
+
|
|
34
950
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
951
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
952
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -333,23 +1249,114 @@ class Support extends SupportClient {
|
|
|
333
1249
|
}
|
|
334
1250
|
createAggregatedClient(commands, Support, { paginators });
|
|
335
1251
|
|
|
1252
|
+
exports.AddAttachmentsToSet$ = AddAttachmentsToSet$;
|
|
336
1253
|
exports.AddAttachmentsToSetCommand = AddAttachmentsToSetCommand;
|
|
1254
|
+
exports.AddAttachmentsToSetRequest$ = AddAttachmentsToSetRequest$;
|
|
1255
|
+
exports.AddAttachmentsToSetResponse$ = AddAttachmentsToSetResponse$;
|
|
1256
|
+
exports.AddCommunicationToCase$ = AddCommunicationToCase$;
|
|
337
1257
|
exports.AddCommunicationToCaseCommand = AddCommunicationToCaseCommand;
|
|
1258
|
+
exports.AddCommunicationToCaseRequest$ = AddCommunicationToCaseRequest$;
|
|
1259
|
+
exports.AddCommunicationToCaseResponse$ = AddCommunicationToCaseResponse$;
|
|
1260
|
+
exports.Attachment$ = Attachment$;
|
|
1261
|
+
exports.AttachmentDetails$ = AttachmentDetails$;
|
|
1262
|
+
exports.AttachmentIdNotFound = AttachmentIdNotFound;
|
|
1263
|
+
exports.AttachmentIdNotFound$ = AttachmentIdNotFound$;
|
|
1264
|
+
exports.AttachmentLimitExceeded = AttachmentLimitExceeded;
|
|
1265
|
+
exports.AttachmentLimitExceeded$ = AttachmentLimitExceeded$;
|
|
1266
|
+
exports.AttachmentSetExpired = AttachmentSetExpired;
|
|
1267
|
+
exports.AttachmentSetExpired$ = AttachmentSetExpired$;
|
|
1268
|
+
exports.AttachmentSetIdNotFound = AttachmentSetIdNotFound;
|
|
1269
|
+
exports.AttachmentSetIdNotFound$ = AttachmentSetIdNotFound$;
|
|
1270
|
+
exports.AttachmentSetSizeLimitExceeded = AttachmentSetSizeLimitExceeded;
|
|
1271
|
+
exports.AttachmentSetSizeLimitExceeded$ = AttachmentSetSizeLimitExceeded$;
|
|
1272
|
+
exports.CaseCreationLimitExceeded = CaseCreationLimitExceeded;
|
|
1273
|
+
exports.CaseCreationLimitExceeded$ = CaseCreationLimitExceeded$;
|
|
1274
|
+
exports.CaseDetails$ = CaseDetails$;
|
|
1275
|
+
exports.CaseIdNotFound = CaseIdNotFound;
|
|
1276
|
+
exports.CaseIdNotFound$ = CaseIdNotFound$;
|
|
1277
|
+
exports.Category$ = Category$;
|
|
1278
|
+
exports.Communication$ = Communication$;
|
|
1279
|
+
exports.CommunicationTypeOptions$ = CommunicationTypeOptions$;
|
|
1280
|
+
exports.CreateCase$ = CreateCase$;
|
|
338
1281
|
exports.CreateCaseCommand = CreateCaseCommand;
|
|
1282
|
+
exports.CreateCaseRequest$ = CreateCaseRequest$;
|
|
1283
|
+
exports.CreateCaseResponse$ = CreateCaseResponse$;
|
|
1284
|
+
exports.DateInterval$ = DateInterval$;
|
|
1285
|
+
exports.DescribeAttachment$ = DescribeAttachment$;
|
|
339
1286
|
exports.DescribeAttachmentCommand = DescribeAttachmentCommand;
|
|
1287
|
+
exports.DescribeAttachmentLimitExceeded = DescribeAttachmentLimitExceeded;
|
|
1288
|
+
exports.DescribeAttachmentLimitExceeded$ = DescribeAttachmentLimitExceeded$;
|
|
1289
|
+
exports.DescribeAttachmentRequest$ = DescribeAttachmentRequest$;
|
|
1290
|
+
exports.DescribeAttachmentResponse$ = DescribeAttachmentResponse$;
|
|
1291
|
+
exports.DescribeCases$ = DescribeCases$;
|
|
340
1292
|
exports.DescribeCasesCommand = DescribeCasesCommand;
|
|
1293
|
+
exports.DescribeCasesRequest$ = DescribeCasesRequest$;
|
|
1294
|
+
exports.DescribeCasesResponse$ = DescribeCasesResponse$;
|
|
1295
|
+
exports.DescribeCommunications$ = DescribeCommunications$;
|
|
341
1296
|
exports.DescribeCommunicationsCommand = DescribeCommunicationsCommand;
|
|
1297
|
+
exports.DescribeCommunicationsRequest$ = DescribeCommunicationsRequest$;
|
|
1298
|
+
exports.DescribeCommunicationsResponse$ = DescribeCommunicationsResponse$;
|
|
1299
|
+
exports.DescribeCreateCaseOptions$ = DescribeCreateCaseOptions$;
|
|
342
1300
|
exports.DescribeCreateCaseOptionsCommand = DescribeCreateCaseOptionsCommand;
|
|
1301
|
+
exports.DescribeCreateCaseOptionsRequest$ = DescribeCreateCaseOptionsRequest$;
|
|
1302
|
+
exports.DescribeCreateCaseOptionsResponse$ = DescribeCreateCaseOptionsResponse$;
|
|
1303
|
+
exports.DescribeServices$ = DescribeServices$;
|
|
343
1304
|
exports.DescribeServicesCommand = DescribeServicesCommand;
|
|
1305
|
+
exports.DescribeServicesRequest$ = DescribeServicesRequest$;
|
|
1306
|
+
exports.DescribeServicesResponse$ = DescribeServicesResponse$;
|
|
1307
|
+
exports.DescribeSeverityLevels$ = DescribeSeverityLevels$;
|
|
344
1308
|
exports.DescribeSeverityLevelsCommand = DescribeSeverityLevelsCommand;
|
|
1309
|
+
exports.DescribeSeverityLevelsRequest$ = DescribeSeverityLevelsRequest$;
|
|
1310
|
+
exports.DescribeSeverityLevelsResponse$ = DescribeSeverityLevelsResponse$;
|
|
1311
|
+
exports.DescribeSupportedLanguages$ = DescribeSupportedLanguages$;
|
|
345
1312
|
exports.DescribeSupportedLanguagesCommand = DescribeSupportedLanguagesCommand;
|
|
1313
|
+
exports.DescribeSupportedLanguagesRequest$ = DescribeSupportedLanguagesRequest$;
|
|
1314
|
+
exports.DescribeSupportedLanguagesResponse$ = DescribeSupportedLanguagesResponse$;
|
|
1315
|
+
exports.DescribeTrustedAdvisorCheckRefreshStatuses$ = DescribeTrustedAdvisorCheckRefreshStatuses$;
|
|
346
1316
|
exports.DescribeTrustedAdvisorCheckRefreshStatusesCommand = DescribeTrustedAdvisorCheckRefreshStatusesCommand;
|
|
1317
|
+
exports.DescribeTrustedAdvisorCheckRefreshStatusesRequest$ = DescribeTrustedAdvisorCheckRefreshStatusesRequest$;
|
|
1318
|
+
exports.DescribeTrustedAdvisorCheckRefreshStatusesResponse$ = DescribeTrustedAdvisorCheckRefreshStatusesResponse$;
|
|
1319
|
+
exports.DescribeTrustedAdvisorCheckResult$ = DescribeTrustedAdvisorCheckResult$;
|
|
347
1320
|
exports.DescribeTrustedAdvisorCheckResultCommand = DescribeTrustedAdvisorCheckResultCommand;
|
|
1321
|
+
exports.DescribeTrustedAdvisorCheckResultRequest$ = DescribeTrustedAdvisorCheckResultRequest$;
|
|
1322
|
+
exports.DescribeTrustedAdvisorCheckResultResponse$ = DescribeTrustedAdvisorCheckResultResponse$;
|
|
1323
|
+
exports.DescribeTrustedAdvisorCheckSummaries$ = DescribeTrustedAdvisorCheckSummaries$;
|
|
348
1324
|
exports.DescribeTrustedAdvisorCheckSummariesCommand = DescribeTrustedAdvisorCheckSummariesCommand;
|
|
1325
|
+
exports.DescribeTrustedAdvisorCheckSummariesRequest$ = DescribeTrustedAdvisorCheckSummariesRequest$;
|
|
1326
|
+
exports.DescribeTrustedAdvisorCheckSummariesResponse$ = DescribeTrustedAdvisorCheckSummariesResponse$;
|
|
1327
|
+
exports.DescribeTrustedAdvisorChecks$ = DescribeTrustedAdvisorChecks$;
|
|
349
1328
|
exports.DescribeTrustedAdvisorChecksCommand = DescribeTrustedAdvisorChecksCommand;
|
|
1329
|
+
exports.DescribeTrustedAdvisorChecksRequest$ = DescribeTrustedAdvisorChecksRequest$;
|
|
1330
|
+
exports.DescribeTrustedAdvisorChecksResponse$ = DescribeTrustedAdvisorChecksResponse$;
|
|
1331
|
+
exports.InternalServerError = InternalServerError;
|
|
1332
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
1333
|
+
exports.RecentCaseCommunications$ = RecentCaseCommunications$;
|
|
1334
|
+
exports.RefreshTrustedAdvisorCheck$ = RefreshTrustedAdvisorCheck$;
|
|
350
1335
|
exports.RefreshTrustedAdvisorCheckCommand = RefreshTrustedAdvisorCheckCommand;
|
|
1336
|
+
exports.RefreshTrustedAdvisorCheckRequest$ = RefreshTrustedAdvisorCheckRequest$;
|
|
1337
|
+
exports.RefreshTrustedAdvisorCheckResponse$ = RefreshTrustedAdvisorCheckResponse$;
|
|
1338
|
+
exports.ResolveCase$ = ResolveCase$;
|
|
351
1339
|
exports.ResolveCaseCommand = ResolveCaseCommand;
|
|
1340
|
+
exports.ResolveCaseRequest$ = ResolveCaseRequest$;
|
|
1341
|
+
exports.ResolveCaseResponse$ = ResolveCaseResponse$;
|
|
1342
|
+
exports.Service$ = Service$;
|
|
1343
|
+
exports.SeverityLevel$ = SeverityLevel$;
|
|
352
1344
|
exports.Support = Support;
|
|
353
1345
|
exports.SupportClient = SupportClient;
|
|
1346
|
+
exports.SupportServiceException = SupportServiceException;
|
|
1347
|
+
exports.SupportServiceException$ = SupportServiceException$;
|
|
1348
|
+
exports.SupportedHour$ = SupportedHour$;
|
|
1349
|
+
exports.SupportedLanguage$ = SupportedLanguage$;
|
|
1350
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1351
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1352
|
+
exports.TrustedAdvisorCategorySpecificSummary$ = TrustedAdvisorCategorySpecificSummary$;
|
|
1353
|
+
exports.TrustedAdvisorCheckDescription$ = TrustedAdvisorCheckDescription$;
|
|
1354
|
+
exports.TrustedAdvisorCheckRefreshStatus$ = TrustedAdvisorCheckRefreshStatus$;
|
|
1355
|
+
exports.TrustedAdvisorCheckResult$ = TrustedAdvisorCheckResult$;
|
|
1356
|
+
exports.TrustedAdvisorCheckSummary$ = TrustedAdvisorCheckSummary$;
|
|
1357
|
+
exports.TrustedAdvisorCostOptimizingSummary$ = TrustedAdvisorCostOptimizingSummary$;
|
|
1358
|
+
exports.TrustedAdvisorResourceDetail$ = TrustedAdvisorResourceDetail$;
|
|
1359
|
+
exports.TrustedAdvisorResourcesSummary$ = TrustedAdvisorResourcesSummary$;
|
|
1360
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
354
1361
|
exports.paginateDescribeCases = paginateDescribeCases;
|
|
355
1362
|
exports.paginateDescribeCommunications = paginateDescribeCommunications;
|