@aws-sdk/client-api-gateway 3.1075.0 → 3.1077.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 +2670 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +9 -11
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/APIGatewayServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -91
- 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 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2276
package/dist-cjs/index.js
CHANGED
|
@@ -1,22 +1,59 @@
|
|
|
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 { getAcceptHeaderPlugin } = require("@aws-sdk/middleware-sdk-api-gateway");
|
|
4
3
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
5
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
6
5
|
exports.$Command = Command;
|
|
7
6
|
exports.__Client = Client;
|
|
8
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
9
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
10
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
11
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
12
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
const {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const {
|
|
19
|
-
|
|
7
|
+
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");
|
|
8
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
13
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
14
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
15
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
16
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
17
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
18
|
+
|
|
19
|
+
const defaultAPIGatewayHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
20
|
+
return {
|
|
21
|
+
operation: getSmithyContext(context).operation,
|
|
22
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
23
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
24
|
+
})(),
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
28
|
+
return {
|
|
29
|
+
schemeId: "aws.auth#sigv4",
|
|
30
|
+
signingProperties: {
|
|
31
|
+
name: "apigateway",
|
|
32
|
+
region: authParameters.region,
|
|
33
|
+
},
|
|
34
|
+
propertiesExtractor: (config, context) => ({
|
|
35
|
+
signingProperties: {
|
|
36
|
+
config,
|
|
37
|
+
context,
|
|
38
|
+
},
|
|
39
|
+
}),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
const defaultAPIGatewayHttpAuthSchemeProvider = (authParameters) => {
|
|
43
|
+
const options = [];
|
|
44
|
+
switch (authParameters.operation) {
|
|
45
|
+
default: {
|
|
46
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return options;
|
|
50
|
+
};
|
|
51
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
52
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
53
|
+
return Object.assign(config_0, {
|
|
54
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
55
|
+
});
|
|
56
|
+
};
|
|
20
57
|
|
|
21
58
|
const resolveClientEndpointParameters = (options) => {
|
|
22
59
|
return Object.assign(options, {
|
|
@@ -32,6 +69,2291 @@ const commonParams = {
|
|
|
32
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
33
70
|
};
|
|
34
71
|
|
|
72
|
+
var version = "3.1076.0";
|
|
73
|
+
var packageInfo = {
|
|
74
|
+
version: version};
|
|
75
|
+
|
|
76
|
+
const k = "ref";
|
|
77
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
78
|
+
const _data = {
|
|
79
|
+
conditions: [
|
|
80
|
+
[c, [g]],
|
|
81
|
+
[c, j],
|
|
82
|
+
["aws.partition", j, d],
|
|
83
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
84
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
86
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://apigateway-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://apigateway-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://apigateway.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
["https://apigateway.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 12, 3,
|
|
108
|
+
1, 4, r + 11,
|
|
109
|
+
2, 5, r + 11,
|
|
110
|
+
3, 8, 6,
|
|
111
|
+
4, 7, r + 10,
|
|
112
|
+
5, r + 8, r + 9,
|
|
113
|
+
4, 10, 9,
|
|
114
|
+
6, r + 6, r + 7,
|
|
115
|
+
5, 11, r + 5,
|
|
116
|
+
6, r + 4, r + 5,
|
|
117
|
+
3, r + 1, 13,
|
|
118
|
+
4, r + 2, r + 3,
|
|
119
|
+
]);
|
|
120
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
121
|
+
|
|
122
|
+
const cache = new EndpointCache({
|
|
123
|
+
size: 50,
|
|
124
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
125
|
+
});
|
|
126
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
127
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
128
|
+
endpointParams: endpointParams,
|
|
129
|
+
logger: context.logger,
|
|
130
|
+
}));
|
|
131
|
+
};
|
|
132
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
133
|
+
|
|
134
|
+
class APIGatewayServiceException extends ServiceException {
|
|
135
|
+
constructor(options) {
|
|
136
|
+
super(options);
|
|
137
|
+
Object.setPrototypeOf(this, APIGatewayServiceException.prototype);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
class BadRequestException extends APIGatewayServiceException {
|
|
142
|
+
name = "BadRequestException";
|
|
143
|
+
$fault = "client";
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "BadRequestException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConflictException extends APIGatewayServiceException {
|
|
154
|
+
name = "ConflictException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ConflictException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
class LimitExceededException extends APIGatewayServiceException {
|
|
166
|
+
name = "LimitExceededException";
|
|
167
|
+
$fault = "client";
|
|
168
|
+
retryAfterSeconds;
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "LimitExceededException",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
176
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class NotFoundException extends APIGatewayServiceException {
|
|
180
|
+
name = "NotFoundException";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "NotFoundException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class TooManyRequestsException extends APIGatewayServiceException {
|
|
192
|
+
name = "TooManyRequestsException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
retryAfterSeconds;
|
|
195
|
+
constructor(opts) {
|
|
196
|
+
super({
|
|
197
|
+
name: "TooManyRequestsException",
|
|
198
|
+
$fault: "client",
|
|
199
|
+
...opts,
|
|
200
|
+
});
|
|
201
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
class UnauthorizedException extends APIGatewayServiceException {
|
|
206
|
+
name = "UnauthorizedException";
|
|
207
|
+
$fault = "client";
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "UnauthorizedException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
class ServiceUnavailableException extends APIGatewayServiceException {
|
|
218
|
+
name = "ServiceUnavailableException";
|
|
219
|
+
$fault = "server";
|
|
220
|
+
retryAfterSeconds;
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "ServiceUnavailableException",
|
|
224
|
+
$fault: "server",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
228
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
const _A = "Account";
|
|
233
|
+
const _AK = "ApiKey";
|
|
234
|
+
const _AKI = "ApiKeyIds";
|
|
235
|
+
const _AKp = "ApiKeys";
|
|
236
|
+
const _ALS = "AccessLogSettings";
|
|
237
|
+
const _AS = "ApiStage";
|
|
238
|
+
const _Ac = "Accept";
|
|
239
|
+
const _Au = "Authorizer";
|
|
240
|
+
const _Aut = "Authorizers";
|
|
241
|
+
const _BPM = "BasePathMapping";
|
|
242
|
+
const _BPMa = "BasePathMappings";
|
|
243
|
+
const _BRE = "BadRequestException";
|
|
244
|
+
const _CA = "CreateAuthorizer";
|
|
245
|
+
const _CAK = "CreateApiKey";
|
|
246
|
+
const _CAKR = "CreateApiKeyRequest";
|
|
247
|
+
const _CAR = "CreateAuthorizerRequest";
|
|
248
|
+
const _CBPM = "CreateBasePathMapping";
|
|
249
|
+
const _CBPMR = "CreateBasePathMappingRequest";
|
|
250
|
+
const _CC = "ClientCertificate";
|
|
251
|
+
const _CCl = "ClientCertificates";
|
|
252
|
+
const _CD = "Content-Disposition";
|
|
253
|
+
const _CDN = "CreateDomainName";
|
|
254
|
+
const _CDNAA = "CreateDomainNameAccessAssociation";
|
|
255
|
+
const _CDNAAR = "CreateDomainNameAccessAssociationRequest";
|
|
256
|
+
const _CDNR = "CreateDomainNameRequest";
|
|
257
|
+
const _CDP = "CreateDocumentationPart";
|
|
258
|
+
const _CDPR = "CreateDocumentationPartRequest";
|
|
259
|
+
const _CDR = "CreateDeploymentRequest";
|
|
260
|
+
const _CDV = "CreateDocumentationVersion";
|
|
261
|
+
const _CDVR = "CreateDocumentationVersionRequest";
|
|
262
|
+
const _CDr = "CreateDeployment";
|
|
263
|
+
const _CE = "ConflictException";
|
|
264
|
+
const _CM = "CreateModel";
|
|
265
|
+
const _CMR = "CreateModelRequest";
|
|
266
|
+
const _CR = "CreateResource";
|
|
267
|
+
const _CRA = "CreateRestApi";
|
|
268
|
+
const _CRAR = "CreateRestApiRequest";
|
|
269
|
+
const _CRR = "CreateResourceRequest";
|
|
270
|
+
const _CRV = "CreateRequestValidator";
|
|
271
|
+
const _CRVR = "CreateRequestValidatorRequest";
|
|
272
|
+
const _CS = "CanarySettings";
|
|
273
|
+
const _CSR = "CreateStageRequest";
|
|
274
|
+
const _CSr = "CreateStage";
|
|
275
|
+
const _CT = "Content-Type";
|
|
276
|
+
const _CUP = "CreateUsagePlan";
|
|
277
|
+
const _CUPK = "CreateUsagePlanKey";
|
|
278
|
+
const _CUPKR = "CreateUsagePlanKeyRequest";
|
|
279
|
+
const _CUPR = "CreateUsagePlanRequest";
|
|
280
|
+
const _CVL = "CreateVpcLink";
|
|
281
|
+
const _CVLR = "CreateVpcLinkRequest";
|
|
282
|
+
const _D = "Deployment";
|
|
283
|
+
const _DA = "DeleteAuthorizer";
|
|
284
|
+
const _DAK = "DeleteApiKey";
|
|
285
|
+
const _DAKR = "DeleteApiKeyRequest";
|
|
286
|
+
const _DAR = "DeleteAuthorizerRequest";
|
|
287
|
+
const _DBPM = "DeleteBasePathMapping";
|
|
288
|
+
const _DBPMR = "DeleteBasePathMappingRequest";
|
|
289
|
+
const _DCC = "DeleteClientCertificate";
|
|
290
|
+
const _DCCR = "DeleteClientCertificateRequest";
|
|
291
|
+
const _DCS = "DeploymentCanarySettings";
|
|
292
|
+
const _DD = "DeleteDeployment";
|
|
293
|
+
const _DDN = "DeleteDomainName";
|
|
294
|
+
const _DDNAA = "DeleteDomainNameAccessAssociation";
|
|
295
|
+
const _DDNAAR = "DeleteDomainNameAccessAssociationRequest";
|
|
296
|
+
const _DDNR = "DeleteDomainNameRequest";
|
|
297
|
+
const _DDP = "DeleteDocumentationPart";
|
|
298
|
+
const _DDPR = "DeleteDocumentationPartRequest";
|
|
299
|
+
const _DDR = "DeleteDeploymentRequest";
|
|
300
|
+
const _DDV = "DeleteDocumentationVersion";
|
|
301
|
+
const _DDVR = "DeleteDocumentationVersionRequest";
|
|
302
|
+
const _DGR = "DeleteGatewayResponse";
|
|
303
|
+
const _DGRR = "DeleteGatewayResponseRequest";
|
|
304
|
+
const _DI = "DeleteIntegration";
|
|
305
|
+
const _DIR = "DeleteIntegrationRequest";
|
|
306
|
+
const _DIRR = "DeleteIntegrationResponseRequest";
|
|
307
|
+
const _DIRe = "DeleteIntegrationResponse";
|
|
308
|
+
const _DM = "DeleteMethod";
|
|
309
|
+
const _DMR = "DeleteMethodRequest";
|
|
310
|
+
const _DMRR = "DeleteMethodResponseRequest";
|
|
311
|
+
const _DMRe = "DeleteModelRequest";
|
|
312
|
+
const _DMRel = "DeleteMethodResponse";
|
|
313
|
+
const _DMe = "DeleteModel";
|
|
314
|
+
const _DN = "DomainName";
|
|
315
|
+
const _DNAA = "DomainNameAccessAssociation";
|
|
316
|
+
const _DNAAo = "DomainNameAccessAssociations";
|
|
317
|
+
const _DNo = "DomainNames";
|
|
318
|
+
const _DP = "DocumentationPart";
|
|
319
|
+
const _DPI = "DocumentationPartIds";
|
|
320
|
+
const _DPL = "DocumentationPartLocation";
|
|
321
|
+
const _DPo = "DocumentationParts";
|
|
322
|
+
const _DR = "DeleteResource";
|
|
323
|
+
const _DRA = "DeleteRestApi";
|
|
324
|
+
const _DRAR = "DeleteRestApiRequest";
|
|
325
|
+
const _DRR = "DeleteResourceRequest";
|
|
326
|
+
const _DRV = "DeleteRequestValidator";
|
|
327
|
+
const _DRVR = "DeleteRequestValidatorRequest";
|
|
328
|
+
const _DS = "DeleteStage";
|
|
329
|
+
const _DSR = "DeleteStageRequest";
|
|
330
|
+
const _DUP = "DeleteUsagePlan";
|
|
331
|
+
const _DUPK = "DeleteUsagePlanKey";
|
|
332
|
+
const _DUPKR = "DeleteUsagePlanKeyRequest";
|
|
333
|
+
const _DUPR = "DeleteUsagePlanRequest";
|
|
334
|
+
const _DV = "DocumentationVersion";
|
|
335
|
+
const _DVL = "DeleteVpcLink";
|
|
336
|
+
const _DVLR = "DeleteVpcLinkRequest";
|
|
337
|
+
const _DVo = "DocumentationVersions";
|
|
338
|
+
const _De = "Deployments";
|
|
339
|
+
const _EC = "EndpointConfiguration";
|
|
340
|
+
const _ER = "ExportResponse";
|
|
341
|
+
const _FSAC = "FlushStageAuthorizersCache";
|
|
342
|
+
const _FSACR = "FlushStageAuthorizersCacheRequest";
|
|
343
|
+
const _FSC = "FlushStageCache";
|
|
344
|
+
const _FSCR = "FlushStageCacheRequest";
|
|
345
|
+
const _GA = "GetAccount";
|
|
346
|
+
const _GAK = "GetApiKey";
|
|
347
|
+
const _GAKR = "GetApiKeyRequest";
|
|
348
|
+
const _GAKRe = "GetApiKeysRequest";
|
|
349
|
+
const _GAKe = "GetApiKeys";
|
|
350
|
+
const _GAR = "GetAccountRequest";
|
|
351
|
+
const _GARe = "GetAuthorizerRequest";
|
|
352
|
+
const _GARet = "GetAuthorizersRequest";
|
|
353
|
+
const _GAe = "GetAuthorizer";
|
|
354
|
+
const _GAet = "GetAuthorizers";
|
|
355
|
+
const _GBPM = "GetBasePathMapping";
|
|
356
|
+
const _GBPMR = "GetBasePathMappingRequest";
|
|
357
|
+
const _GBPMRe = "GetBasePathMappingsRequest";
|
|
358
|
+
const _GBPMe = "GetBasePathMappings";
|
|
359
|
+
const _GCC = "GenerateClientCertificate";
|
|
360
|
+
const _GCCR = "GenerateClientCertificateRequest";
|
|
361
|
+
const _GCCRe = "GetClientCertificateRequest";
|
|
362
|
+
const _GCCRet = "GetClientCertificatesRequest";
|
|
363
|
+
const _GCCe = "GetClientCertificate";
|
|
364
|
+
const _GCCet = "GetClientCertificates";
|
|
365
|
+
const _GD = "GetDeployment";
|
|
366
|
+
const _GDN = "GetDomainName";
|
|
367
|
+
const _GDNAA = "GetDomainNameAccessAssociations";
|
|
368
|
+
const _GDNAAR = "GetDomainNameAccessAssociationsRequest";
|
|
369
|
+
const _GDNR = "GetDomainNameRequest";
|
|
370
|
+
const _GDNRe = "GetDomainNamesRequest";
|
|
371
|
+
const _GDNe = "GetDomainNames";
|
|
372
|
+
const _GDP = "GetDocumentationPart";
|
|
373
|
+
const _GDPR = "GetDocumentationPartRequest";
|
|
374
|
+
const _GDPRe = "GetDocumentationPartsRequest";
|
|
375
|
+
const _GDPe = "GetDocumentationParts";
|
|
376
|
+
const _GDR = "GetDeploymentRequest";
|
|
377
|
+
const _GDRe = "GetDeploymentsRequest";
|
|
378
|
+
const _GDV = "GetDocumentationVersion";
|
|
379
|
+
const _GDVR = "GetDocumentationVersionRequest";
|
|
380
|
+
const _GDVRe = "GetDocumentationVersionsRequest";
|
|
381
|
+
const _GDVe = "GetDocumentationVersions";
|
|
382
|
+
const _GDe = "GetDeployments";
|
|
383
|
+
const _GE = "GetExport";
|
|
384
|
+
const _GER = "GetExportRequest";
|
|
385
|
+
const _GGR = "GetGatewayResponse";
|
|
386
|
+
const _GGRR = "GetGatewayResponseRequest";
|
|
387
|
+
const _GGRRe = "GetGatewayResponsesRequest";
|
|
388
|
+
const _GGRe = "GetGatewayResponses";
|
|
389
|
+
const _GI = "GetIntegration";
|
|
390
|
+
const _GIR = "GetIntegrationRequest";
|
|
391
|
+
const _GIRR = "GetIntegrationResponseRequest";
|
|
392
|
+
const _GIRe = "GetIntegrationResponse";
|
|
393
|
+
const _GM = "GetMethod";
|
|
394
|
+
const _GMR = "GetMethodRequest";
|
|
395
|
+
const _GMRR = "GetMethodResponseRequest";
|
|
396
|
+
const _GMRe = "GetModelRequest";
|
|
397
|
+
const _GMRet = "GetModelsRequest";
|
|
398
|
+
const _GMRete = "GetMethodResponse";
|
|
399
|
+
const _GMT = "GetModelTemplate";
|
|
400
|
+
const _GMTR = "GetModelTemplateRequest";
|
|
401
|
+
const _GMe = "GetModel";
|
|
402
|
+
const _GMet = "GetModels";
|
|
403
|
+
const _GR = "GatewayResponse";
|
|
404
|
+
const _GRA = "GetRestApi";
|
|
405
|
+
const _GRAR = "GetRestApiRequest";
|
|
406
|
+
const _GRARe = "GetRestApisRequest";
|
|
407
|
+
const _GRAe = "GetRestApis";
|
|
408
|
+
const _GRR = "GetResourceRequest";
|
|
409
|
+
const _GRRe = "GetResourcesRequest";
|
|
410
|
+
const _GRV = "GetRequestValidator";
|
|
411
|
+
const _GRVR = "GetRequestValidatorRequest";
|
|
412
|
+
const _GRVRe = "GetRequestValidatorsRequest";
|
|
413
|
+
const _GRVe = "GetRequestValidators";
|
|
414
|
+
const _GRa = "GatewayResponses";
|
|
415
|
+
const _GRe = "GetResource";
|
|
416
|
+
const _GRet = "GetResources";
|
|
417
|
+
const _GS = "GetSdk";
|
|
418
|
+
const _GSR = "GetSdkRequest";
|
|
419
|
+
const _GSRe = "GetStageRequest";
|
|
420
|
+
const _GSRet = "GetStagesRequest";
|
|
421
|
+
const _GST = "GetSdkType";
|
|
422
|
+
const _GSTR = "GetSdkTypeRequest";
|
|
423
|
+
const _GSTRe = "GetSdkTypesRequest";
|
|
424
|
+
const _GSTe = "GetSdkTypes";
|
|
425
|
+
const _GSe = "GetStage";
|
|
426
|
+
const _GSet = "GetStages";
|
|
427
|
+
const _GT = "GetTags";
|
|
428
|
+
const _GTR = "GetTagsRequest";
|
|
429
|
+
const _GU = "GetUsage";
|
|
430
|
+
const _GUP = "GetUsagePlan";
|
|
431
|
+
const _GUPK = "GetUsagePlanKey";
|
|
432
|
+
const _GUPKR = "GetUsagePlanKeyRequest";
|
|
433
|
+
const _GUPKRe = "GetUsagePlanKeysRequest";
|
|
434
|
+
const _GUPKe = "GetUsagePlanKeys";
|
|
435
|
+
const _GUPR = "GetUsagePlanRequest";
|
|
436
|
+
const _GUPRe = "GetUsagePlansRequest";
|
|
437
|
+
const _GUPe = "GetUsagePlans";
|
|
438
|
+
const _GUR = "GetUsageRequest";
|
|
439
|
+
const _GVL = "GetVpcLink";
|
|
440
|
+
const _GVLR = "GetVpcLinkRequest";
|
|
441
|
+
const _GVLRe = "GetVpcLinksRequest";
|
|
442
|
+
const _GVLe = "GetVpcLinks";
|
|
443
|
+
const _I = "Integration";
|
|
444
|
+
const _IAK = "ImportApiKeys";
|
|
445
|
+
const _IAKR = "ImportApiKeysRequest";
|
|
446
|
+
const _IDP = "ImportDocumentationParts";
|
|
447
|
+
const _IDPR = "ImportDocumentationPartsRequest";
|
|
448
|
+
const _IR = "IntegrationResponse";
|
|
449
|
+
const _IRA = "ImportRestApi";
|
|
450
|
+
const _IRAR = "ImportRestApiRequest";
|
|
451
|
+
const _LEE = "LimitExceededException";
|
|
452
|
+
const _LOA = "ListOfAuthorizer";
|
|
453
|
+
const _LOAK = "ListOfApiKey";
|
|
454
|
+
const _LOAS = "ListOfApiStage";
|
|
455
|
+
const _LOBPM = "ListOfBasePathMapping";
|
|
456
|
+
const _LOCC = "ListOfClientCertificate";
|
|
457
|
+
const _LOD = "ListOfDeployment";
|
|
458
|
+
const _LODN = "ListOfDomainName";
|
|
459
|
+
const _LODNAA = "ListOfDomainNameAccessAssociation";
|
|
460
|
+
const _LODP = "ListOfDocumentationPart";
|
|
461
|
+
const _LODV = "ListOfDocumentationVersion";
|
|
462
|
+
const _LOGR = "ListOfGatewayResponse";
|
|
463
|
+
const _LOM = "ListOfModel";
|
|
464
|
+
const _LOPO = "ListOfPatchOperation";
|
|
465
|
+
const _LOR = "ListOfResource";
|
|
466
|
+
const _LORA = "ListOfRestApi";
|
|
467
|
+
const _LORV = "ListOfRequestValidator";
|
|
468
|
+
const _LOS = "ListOfStage";
|
|
469
|
+
const _LOSCP = "ListOfSdkConfigurationProperty";
|
|
470
|
+
const _LOSK = "ListOfStageKeys";
|
|
471
|
+
const _LOST = "ListOfSdkType";
|
|
472
|
+
const _LOU = "ListOfUsage";
|
|
473
|
+
const _LOUP = "ListOfUsagePlan";
|
|
474
|
+
const _LOUPK = "ListOfUsagePlanKey";
|
|
475
|
+
const _LOVL = "ListOfVpcLink";
|
|
476
|
+
const _M = "Method";
|
|
477
|
+
const _MOASTS = "MapOfApiStageThrottleSettings";
|
|
478
|
+
const _MOIR = "MapOfIntegrationResponse";
|
|
479
|
+
const _MOKU = "MapOfKeyUsages";
|
|
480
|
+
const _MOM = "MapOfMethod";
|
|
481
|
+
const _MOMR = "MapOfMethodResponse";
|
|
482
|
+
const _MOMS = "MapOfMethodSettings";
|
|
483
|
+
const _MOMSa = "MapOfMethodSnapshot";
|
|
484
|
+
const _MOSTL = "MapOfStringToList";
|
|
485
|
+
const _MR = "MethodResponse";
|
|
486
|
+
const _MS = "MethodSetting";
|
|
487
|
+
const _MSe = "MethodSnapshot";
|
|
488
|
+
const _MTA = "MutualTlsAuthentication";
|
|
489
|
+
const _MTAI = "MutualTlsAuthenticationInput";
|
|
490
|
+
const _Mo = "Model";
|
|
491
|
+
const _Mod = "Models";
|
|
492
|
+
const _NFE = "NotFoundException";
|
|
493
|
+
const _PGR = "PutGatewayResponse";
|
|
494
|
+
const _PGRR = "PutGatewayResponseRequest";
|
|
495
|
+
const _PI = "PutIntegration";
|
|
496
|
+
const _PIR = "PutIntegrationRequest";
|
|
497
|
+
const _PIRR = "PutIntegrationResponseRequest";
|
|
498
|
+
const _PIRu = "PutIntegrationResponse";
|
|
499
|
+
const _PM = "PutMethod";
|
|
500
|
+
const _PMR = "PutMethodRequest";
|
|
501
|
+
const _PMRR = "PutMethodResponseRequest";
|
|
502
|
+
const _PMRu = "PutMethodResponse";
|
|
503
|
+
const _PO = "PatchOperation";
|
|
504
|
+
const _PRA = "PutRestApi";
|
|
505
|
+
const _PRAR = "PutRestApiRequest";
|
|
506
|
+
const _PTMOMS = "PathToMapOfMethodSnapshot";
|
|
507
|
+
const _QS = "QuotaSettings";
|
|
508
|
+
const _R = "Resource";
|
|
509
|
+
const _RA = "Retry-After";
|
|
510
|
+
const _RAe = "RestApi";
|
|
511
|
+
const _RAes = "RestApis";
|
|
512
|
+
const _RDNAA = "RejectDomainNameAccessAssociation";
|
|
513
|
+
const _RDNAAR = "RejectDomainNameAccessAssociationRequest";
|
|
514
|
+
const _RV = "RequestValidator";
|
|
515
|
+
const _RVe = "RequestValidators";
|
|
516
|
+
const _Re = "Resources";
|
|
517
|
+
const _S = "Stage";
|
|
518
|
+
const _SCP = "SdkConfigurationProperty";
|
|
519
|
+
const _SK = "StageKey";
|
|
520
|
+
const _SR = "SdkResponse";
|
|
521
|
+
const _ST = "SdkType";
|
|
522
|
+
const _STd = "SdkTypes";
|
|
523
|
+
const _SUE = "ServiceUnavailableException";
|
|
524
|
+
const _St = "Stages";
|
|
525
|
+
const _T = "Tags";
|
|
526
|
+
const _TC = "TlsConfig";
|
|
527
|
+
const _TIA = "TestInvokeAuthorizer";
|
|
528
|
+
const _TIAR = "TestInvokeAuthorizerRequest";
|
|
529
|
+
const _TIARe = "TestInvokeAuthorizerResponse";
|
|
530
|
+
const _TIM = "TestInvokeMethod";
|
|
531
|
+
const _TIMR = "TestInvokeMethodRequest";
|
|
532
|
+
const _TIMRe = "TestInvokeMethodResponse";
|
|
533
|
+
const _TMRE = "TooManyRequestsException";
|
|
534
|
+
const _TR = "TagResource";
|
|
535
|
+
const _TRR = "TagResourceRequest";
|
|
536
|
+
const _TS = "ThrottleSettings";
|
|
537
|
+
const _Te = "Template";
|
|
538
|
+
const _U = "Usage";
|
|
539
|
+
const _UA = "UpdateAccount";
|
|
540
|
+
const _UAK = "UpdateApiKey";
|
|
541
|
+
const _UAKR = "UpdateApiKeyRequest";
|
|
542
|
+
const _UAR = "UpdateAccountRequest";
|
|
543
|
+
const _UARp = "UpdateAuthorizerRequest";
|
|
544
|
+
const _UAp = "UpdateAuthorizer";
|
|
545
|
+
const _UBPM = "UpdateBasePathMapping";
|
|
546
|
+
const _UBPMR = "UpdateBasePathMappingRequest";
|
|
547
|
+
const _UCC = "UpdateClientCertificate";
|
|
548
|
+
const _UCCR = "UpdateClientCertificateRequest";
|
|
549
|
+
const _UD = "UpdateDeployment";
|
|
550
|
+
const _UDN = "UpdateDomainName";
|
|
551
|
+
const _UDNR = "UpdateDomainNameRequest";
|
|
552
|
+
const _UDP = "UpdateDocumentationPart";
|
|
553
|
+
const _UDPR = "UpdateDocumentationPartRequest";
|
|
554
|
+
const _UDR = "UpdateDeploymentRequest";
|
|
555
|
+
const _UDV = "UpdateDocumentationVersion";
|
|
556
|
+
const _UDVR = "UpdateDocumentationVersionRequest";
|
|
557
|
+
const _UE = "UnauthorizedException";
|
|
558
|
+
const _UGR = "UpdateGatewayResponse";
|
|
559
|
+
const _UGRR = "UpdateGatewayResponseRequest";
|
|
560
|
+
const _UI = "UpdateIntegration";
|
|
561
|
+
const _UIR = "UpdateIntegrationRequest";
|
|
562
|
+
const _UIRR = "UpdateIntegrationResponseRequest";
|
|
563
|
+
const _UIRp = "UpdateIntegrationResponse";
|
|
564
|
+
const _UM = "UpdateMethod";
|
|
565
|
+
const _UMR = "UpdateMethodRequest";
|
|
566
|
+
const _UMRR = "UpdateMethodResponseRequest";
|
|
567
|
+
const _UMRp = "UpdateModelRequest";
|
|
568
|
+
const _UMRpd = "UpdateMethodResponse";
|
|
569
|
+
const _UMp = "UpdateModel";
|
|
570
|
+
const _UP = "UsagePlan";
|
|
571
|
+
const _UPK = "UsagePlanKey";
|
|
572
|
+
const _UPKs = "UsagePlanKeys";
|
|
573
|
+
const _UPs = "UsagePlans";
|
|
574
|
+
const _UR = "UntagResource";
|
|
575
|
+
const _URA = "UpdateRestApi";
|
|
576
|
+
const _URAR = "UpdateRestApiRequest";
|
|
577
|
+
const _URR = "UntagResourceRequest";
|
|
578
|
+
const _URRp = "UpdateResourceRequest";
|
|
579
|
+
const _URV = "UpdateRequestValidator";
|
|
580
|
+
const _URVR = "UpdateRequestValidatorRequest";
|
|
581
|
+
const _URp = "UpdateResource";
|
|
582
|
+
const _US = "UpdateStage";
|
|
583
|
+
const _USR = "UpdateStageRequest";
|
|
584
|
+
const _UU = "UpdateUsage";
|
|
585
|
+
const _UUP = "UpdateUsagePlan";
|
|
586
|
+
const _UUPR = "UpdateUsagePlanRequest";
|
|
587
|
+
const _UUR = "UpdateUsageRequest";
|
|
588
|
+
const _UVL = "UpdateVpcLink";
|
|
589
|
+
const _UVLR = "UpdateVpcLinkRequest";
|
|
590
|
+
const _VL = "VpcLink";
|
|
591
|
+
const _VLp = "VpcLinks";
|
|
592
|
+
const _a = "accepts";
|
|
593
|
+
const _aAS = "accessAssociationSource";
|
|
594
|
+
const _aAST = "accessAssociationSourceType";
|
|
595
|
+
const _aC = "authorizerCredentials";
|
|
596
|
+
const _aCd = "additionalContext";
|
|
597
|
+
const _aI = "apiId";
|
|
598
|
+
const _aIu = "authorizerId";
|
|
599
|
+
const _aK = "apiKey";
|
|
600
|
+
const _aKR = "apiKeyRequired";
|
|
601
|
+
const _aKS = "apiKeySource";
|
|
602
|
+
const _aKV = "apiKeyVersion";
|
|
603
|
+
const _aLS = "accessLogSettings";
|
|
604
|
+
const _aRTIS = "authorizerResultTtlInSeconds";
|
|
605
|
+
const _aS = "apiStages";
|
|
606
|
+
const _aSM = "apiStatusMessage";
|
|
607
|
+
const _aSp = "apiSummary";
|
|
608
|
+
const _aSpi = "apiStatus";
|
|
609
|
+
const _aSu = "authorizationScopes";
|
|
610
|
+
const _aT = "authType";
|
|
611
|
+
const _aTu = "authorizationType";
|
|
612
|
+
const _aU = "authorizerUri";
|
|
613
|
+
const _au = "authorization";
|
|
614
|
+
const _b = "body";
|
|
615
|
+
const _bL = "burstLimit";
|
|
616
|
+
const _bMT = "binaryMediaTypes";
|
|
617
|
+
const _bP = "basePath";
|
|
618
|
+
const _c = "client";
|
|
619
|
+
const _cA = "certificateArn";
|
|
620
|
+
const _cB = "certificateBody";
|
|
621
|
+
const _cC = "certificateChain";
|
|
622
|
+
const _cCE = "cacheClusterEnabled";
|
|
623
|
+
const _cCI = "clientCertificateId";
|
|
624
|
+
const _cCS = "cacheClusterSize";
|
|
625
|
+
const _cCSa = "cacheClusterStatus";
|
|
626
|
+
const _cD = "createdDate";
|
|
627
|
+
const _cDE = "cacheDataEncrypted";
|
|
628
|
+
const _cDo = "contentDisposition";
|
|
629
|
+
const _cE = "cachingEnabled";
|
|
630
|
+
const _cF = "cloneFrom";
|
|
631
|
+
const _cH = "contentHandling";
|
|
632
|
+
const _cI = "customerId";
|
|
633
|
+
const _cIo = "connectionId";
|
|
634
|
+
const _cKP = "cacheKeyParameters";
|
|
635
|
+
const _cN = "certificateName";
|
|
636
|
+
const _cNa = "cacheNamespace";
|
|
637
|
+
const _cP = "configurationProperties";
|
|
638
|
+
const _cPK = "certificatePrivateKey";
|
|
639
|
+
const _cRA = "cloudwatchRoleArn";
|
|
640
|
+
const _cS = "canarySettings";
|
|
641
|
+
const _cSl = "clientStatus";
|
|
642
|
+
const _cT = "contentType";
|
|
643
|
+
const _cTIS = "cacheTtlInSeconds";
|
|
644
|
+
const _cTo = "connectionType";
|
|
645
|
+
const _cUD = "certificateUploadDate";
|
|
646
|
+
const _cl = "claims";
|
|
647
|
+
const _cr = "credentials";
|
|
648
|
+
const _d = "description";
|
|
649
|
+
const _dA = "destinationArn";
|
|
650
|
+
const _dDN = "distributionDomainName";
|
|
651
|
+
const _dEAE = "disableExecuteApiEndpoint";
|
|
652
|
+
const _dHZI = "distributionHostedZoneId";
|
|
653
|
+
const _dI = "deploymentId";
|
|
654
|
+
const _dN = "domainName";
|
|
655
|
+
const _dNA = "domainNameArn";
|
|
656
|
+
const _dNAAA = "domainNameAccessAssociationArn";
|
|
657
|
+
const _dNI = "domainNameId";
|
|
658
|
+
const _dNS = "domainNameStatus";
|
|
659
|
+
const _dNSM = "domainNameStatusMessage";
|
|
660
|
+
const _dPI = "documentationPartId";
|
|
661
|
+
const _dR = "defaultResponse";
|
|
662
|
+
const _dTE = "dataTraceEnabled";
|
|
663
|
+
const _dV = "documentationVersion";
|
|
664
|
+
const _dVe = "defaultValue";
|
|
665
|
+
const _e = "error";
|
|
666
|
+
const _eAM = "endpointAccessMode";
|
|
667
|
+
const _eC = "endpointConfiguration";
|
|
668
|
+
const _eD = "expirationDate";
|
|
669
|
+
const _eDn = "endDate";
|
|
670
|
+
const _eT = "exportType";
|
|
671
|
+
const _em = "embed";
|
|
672
|
+
const _en = "enabled";
|
|
673
|
+
const _f = "format";
|
|
674
|
+
const _fN = "friendlyName";
|
|
675
|
+
const _fOW = "failOnWarnings";
|
|
676
|
+
const _fa = "failonwarnings";
|
|
677
|
+
const _fe = "features";
|
|
678
|
+
const _fl = "flatten";
|
|
679
|
+
const _fr = "from";
|
|
680
|
+
const _gDI = "generateDistinctId";
|
|
681
|
+
const _h = "headers";
|
|
682
|
+
const _hE = "httpError";
|
|
683
|
+
const _hH = "httpHeader";
|
|
684
|
+
const _hL = "httpLabel";
|
|
685
|
+
const _hM = "httpMethod";
|
|
686
|
+
const _hQ = "httpQuery";
|
|
687
|
+
const _ht = "http";
|
|
688
|
+
const _i = "id";
|
|
689
|
+
const _iAT = "ipAddressType";
|
|
690
|
+
const _iHM = "integrationHttpMethod";
|
|
691
|
+
const _iR = "integrationResponses";
|
|
692
|
+
const _iS = "identitySource";
|
|
693
|
+
const _iSV = "insecureSkipVerification";
|
|
694
|
+
const _iT = "integrationTarget";
|
|
695
|
+
const _iV = "includeValue";
|
|
696
|
+
const _iVE = "identityValidationExpression";
|
|
697
|
+
const _iVn = "includeValues";
|
|
698
|
+
const _id = "ids";
|
|
699
|
+
const _it = "items";
|
|
700
|
+
const _ite = "item";
|
|
701
|
+
const _jN = "jsonName";
|
|
702
|
+
const _kI = "keyId";
|
|
703
|
+
const _kT = "keyType";
|
|
704
|
+
const _l = "location";
|
|
705
|
+
const _lL = "loggingLevel";
|
|
706
|
+
const _lS = "locationStatus";
|
|
707
|
+
const _lUD = "lastUpdatedDate";
|
|
708
|
+
const _la = "latency";
|
|
709
|
+
const _li = "limit";
|
|
710
|
+
const _lo = "log";
|
|
711
|
+
const _m = "message";
|
|
712
|
+
const _mCS = "minimumCompressionSize";
|
|
713
|
+
const _mE = "metricsEnabled";
|
|
714
|
+
const _mI = "methodIntegration";
|
|
715
|
+
const _mN = "modelName";
|
|
716
|
+
const _mP = "managementPolicy";
|
|
717
|
+
const _mR = "methodResponses";
|
|
718
|
+
const _mS = "methodSettings";
|
|
719
|
+
const _mTA = "mutualTlsAuthentication";
|
|
720
|
+
const _mVH = "multiValueHeaders";
|
|
721
|
+
const _me = "method";
|
|
722
|
+
const _mo = "mode";
|
|
723
|
+
const _n = "name";
|
|
724
|
+
const _nQ = "nameQuery";
|
|
725
|
+
const _o = "op";
|
|
726
|
+
const _oN = "operationName";
|
|
727
|
+
const _oVCA = "ownershipVerificationCertificateArn";
|
|
728
|
+
const _of = "offset";
|
|
729
|
+
const _p = "position";
|
|
730
|
+
const _pARN = "providerARNs";
|
|
731
|
+
const _pB = "passthroughBehavior";
|
|
732
|
+
const _pC = "productCode";
|
|
733
|
+
const _pEC = "pemEncodedCertificate";
|
|
734
|
+
const _pI = "parentId";
|
|
735
|
+
const _pIr = "principalId";
|
|
736
|
+
const _pO = "patchOperations";
|
|
737
|
+
const _pP = "pathPart";
|
|
738
|
+
const _pT = "percentTraffic";
|
|
739
|
+
const _pWQS = "pathWithQueryString";
|
|
740
|
+
const _pa = "path";
|
|
741
|
+
const _par = "parameters";
|
|
742
|
+
const _pe = "period";
|
|
743
|
+
const _po = "policy";
|
|
744
|
+
const _pr = "properties";
|
|
745
|
+
const _q = "quota";
|
|
746
|
+
const _r = "required";
|
|
747
|
+
const _rA = "resourceArn";
|
|
748
|
+
const _rAFCC = "requireAuthorizationForCacheControl";
|
|
749
|
+
const _rAI = "restApiId";
|
|
750
|
+
const _rAS = "retryAfterSeconds";
|
|
751
|
+
const _rCA = "regionalCertificateArn";
|
|
752
|
+
const _rCN = "regionalCertificateName";
|
|
753
|
+
const _rDN = "regionalDomainName";
|
|
754
|
+
const _rHM = "requestHttpMethod";
|
|
755
|
+
const _rHZI = "regionalHostedZoneId";
|
|
756
|
+
const _rI = "resourceId";
|
|
757
|
+
const _rL = "rateLimit";
|
|
758
|
+
const _rM = "routingMode";
|
|
759
|
+
const _rMe = "requestModels";
|
|
760
|
+
const _rMes = "responseModels";
|
|
761
|
+
const _rMeso = "resourceMethods";
|
|
762
|
+
const _rO = "resourceOwner";
|
|
763
|
+
const _rP = "responseParameters";
|
|
764
|
+
const _rPe = "requestParameters";
|
|
765
|
+
const _rRI = "rootResourceId";
|
|
766
|
+
const _rT = "responseType";
|
|
767
|
+
const _rTM = "responseTransferMode";
|
|
768
|
+
const _rTe = "responseTemplates";
|
|
769
|
+
const _rTeq = "requestTemplates";
|
|
770
|
+
const _rVI = "requestValidatorId";
|
|
771
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.apigateway";
|
|
772
|
+
const _sC = "statusCode";
|
|
773
|
+
const _sD = "stageDescription";
|
|
774
|
+
const _sDt = "startDate";
|
|
775
|
+
const _sK = "stageKeys";
|
|
776
|
+
const _sM = "statusMessage";
|
|
777
|
+
const _sN = "stageName";
|
|
778
|
+
const _sP = "securityPolicy";
|
|
779
|
+
const _sPe = "selectionPattern";
|
|
780
|
+
const _sT = "sdkType";
|
|
781
|
+
const _sV = "stageVariables";
|
|
782
|
+
const _sVO = "stageVariableOverrides";
|
|
783
|
+
const _sc = "schema";
|
|
784
|
+
const _se = "server";
|
|
785
|
+
const _st = "stage";
|
|
786
|
+
const _sta = "status";
|
|
787
|
+
const _t = "tags";
|
|
788
|
+
const _tA = "targetArns";
|
|
789
|
+
const _tBL = "throttlingBurstLimit";
|
|
790
|
+
const _tC = "tlsConfig";
|
|
791
|
+
const _tE = "tracingEnabled";
|
|
792
|
+
const _tIM = "timeoutInMillis";
|
|
793
|
+
const _tK = "tagKeys";
|
|
794
|
+
const _tRL = "throttlingRateLimit";
|
|
795
|
+
const _tS = "throttleSettings";
|
|
796
|
+
const _tU = "truststoreUri";
|
|
797
|
+
const _tV = "truststoreVersion";
|
|
798
|
+
const _tW = "truststoreWarnings";
|
|
799
|
+
const _th = "throttle";
|
|
800
|
+
const _ty = "type";
|
|
801
|
+
const _typ = "types";
|
|
802
|
+
const _u = "uri";
|
|
803
|
+
const _uCCHS = "unauthorizedCacheControlHeaderStrategy";
|
|
804
|
+
const _uPI = "usagePlanId";
|
|
805
|
+
const _uSC = "useStageCache";
|
|
806
|
+
const _v = "value";
|
|
807
|
+
const _vEI = "vpcEndpointIds";
|
|
808
|
+
const _vLI = "vpcLinkId";
|
|
809
|
+
const _vRB = "validateRequestBody";
|
|
810
|
+
const _vRP = "validateRequestParameters";
|
|
811
|
+
const _va = "variables";
|
|
812
|
+
const _val = "values";
|
|
813
|
+
const _ve = "version";
|
|
814
|
+
const _w = "warnings";
|
|
815
|
+
const _wAA = "webAclArn";
|
|
816
|
+
const n0 = "com.amazonaws.apigateway";
|
|
817
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
818
|
+
var APIGatewayServiceException$ = [-3, _s, "APIGatewayServiceException", 0, [], []];
|
|
819
|
+
_s_registry.registerError(APIGatewayServiceException$, APIGatewayServiceException);
|
|
820
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
821
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
822
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
823
|
+
[_m],
|
|
824
|
+
[0]
|
|
825
|
+
];
|
|
826
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
827
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
828
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
829
|
+
[_m],
|
|
830
|
+
[0]
|
|
831
|
+
];
|
|
832
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
833
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
834
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
835
|
+
[_rAS, _m],
|
|
836
|
+
[[0, { [_hH]: _RA }], 0]
|
|
837
|
+
];
|
|
838
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
839
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
840
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
841
|
+
[_m],
|
|
842
|
+
[0]
|
|
843
|
+
];
|
|
844
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
845
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
846
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
847
|
+
[_rAS, _m],
|
|
848
|
+
[[0, { [_hH]: _RA }], 0]
|
|
849
|
+
];
|
|
850
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
851
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
852
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
853
|
+
[_rAS, _m],
|
|
854
|
+
[[0, { [_hH]: _RA }], 0]
|
|
855
|
+
];
|
|
856
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
857
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
858
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
859
|
+
[_m],
|
|
860
|
+
[0]
|
|
861
|
+
];
|
|
862
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
863
|
+
const errorTypeRegistries = [
|
|
864
|
+
_s_registry,
|
|
865
|
+
n0_registry,
|
|
866
|
+
];
|
|
867
|
+
var AccessLogSettings$ = [3, n0, _ALS,
|
|
868
|
+
0,
|
|
869
|
+
[_f, _dA],
|
|
870
|
+
[0, 0]
|
|
871
|
+
];
|
|
872
|
+
var Account$ = [3, n0, _A,
|
|
873
|
+
0,
|
|
874
|
+
[_cRA, _tS, _fe, _aKV],
|
|
875
|
+
[0, () => ThrottleSettings$, 64 | 0, 0]
|
|
876
|
+
];
|
|
877
|
+
var ApiKey$ = [3, n0, _AK,
|
|
878
|
+
0,
|
|
879
|
+
[_i, _v, _n, _cI, _d, _en, _cD, _lUD, _sK, _t],
|
|
880
|
+
[0, 0, 0, 0, 0, 2, 4, 4, 64 | 0, 128 | 0]
|
|
881
|
+
];
|
|
882
|
+
var ApiKeyIds$ = [3, n0, _AKI,
|
|
883
|
+
0,
|
|
884
|
+
[_id, _w],
|
|
885
|
+
[64 | 0, 64 | 0]
|
|
886
|
+
];
|
|
887
|
+
var ApiKeys$ = [3, n0, _AKp,
|
|
888
|
+
0,
|
|
889
|
+
[_w, _it, _p],
|
|
890
|
+
[64 | 0, [() => ListOfApiKey, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
891
|
+
];
|
|
892
|
+
var ApiStage$ = [3, n0, _AS,
|
|
893
|
+
0,
|
|
894
|
+
[_aI, _st, _th],
|
|
895
|
+
[0, 0, () => MapOfApiStageThrottleSettings]
|
|
896
|
+
];
|
|
897
|
+
var Authorizer$ = [3, n0, _Au,
|
|
898
|
+
0,
|
|
899
|
+
[_i, _n, _ty, _pARN, _aT, _aU, _aC, _iS, _iVE, _aRTIS],
|
|
900
|
+
[0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 1]
|
|
901
|
+
];
|
|
902
|
+
var Authorizers$ = [3, n0, _Aut,
|
|
903
|
+
0,
|
|
904
|
+
[_it, _p],
|
|
905
|
+
[[() => ListOfAuthorizer, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
906
|
+
];
|
|
907
|
+
var BasePathMapping$ = [3, n0, _BPM,
|
|
908
|
+
0,
|
|
909
|
+
[_bP, _rAI, _st],
|
|
910
|
+
[0, 0, 0]
|
|
911
|
+
];
|
|
912
|
+
var BasePathMappings$ = [3, n0, _BPMa,
|
|
913
|
+
0,
|
|
914
|
+
[_it, _p],
|
|
915
|
+
[[() => ListOfBasePathMapping, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
916
|
+
];
|
|
917
|
+
var CanarySettings$ = [3, n0, _CS,
|
|
918
|
+
0,
|
|
919
|
+
[_pT, _dI, _sVO, _uSC],
|
|
920
|
+
[1, 0, 128 | 0, 2]
|
|
921
|
+
];
|
|
922
|
+
var ClientCertificate$ = [3, n0, _CC,
|
|
923
|
+
0,
|
|
924
|
+
[_cCI, _d, _pEC, _cD, _eD, _t],
|
|
925
|
+
[0, 0, 0, 4, 4, 128 | 0]
|
|
926
|
+
];
|
|
927
|
+
var ClientCertificates$ = [3, n0, _CCl,
|
|
928
|
+
0,
|
|
929
|
+
[_it, _p],
|
|
930
|
+
[[() => ListOfClientCertificate, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
931
|
+
];
|
|
932
|
+
var CreateApiKeyRequest$ = [3, n0, _CAKR,
|
|
933
|
+
0,
|
|
934
|
+
[_n, _d, _en, _gDI, _v, _sK, _cI, _t],
|
|
935
|
+
[0, 0, 2, 2, 0, () => ListOfStageKeys, 0, 128 | 0]
|
|
936
|
+
];
|
|
937
|
+
var CreateAuthorizerRequest$ = [3, n0, _CAR,
|
|
938
|
+
0,
|
|
939
|
+
[_rAI, _n, _ty, _pARN, _aT, _aU, _aC, _iS, _iVE, _aRTIS],
|
|
940
|
+
[[0, 1], 0, 0, 64 | 0, 0, 0, 0, 0, 0, 1], 3
|
|
941
|
+
];
|
|
942
|
+
var CreateBasePathMappingRequest$ = [3, n0, _CBPMR,
|
|
943
|
+
0,
|
|
944
|
+
[_dN, _rAI, _dNI, _bP, _st],
|
|
945
|
+
[[0, 1], 0, [0, { [_hQ]: _dNI }], 0, 0], 2
|
|
946
|
+
];
|
|
947
|
+
var CreateDeploymentRequest$ = [3, n0, _CDR,
|
|
948
|
+
0,
|
|
949
|
+
[_rAI, _sN, _sD, _d, _cCE, _cCS, _va, _cS, _tE],
|
|
950
|
+
[[0, 1], 0, 0, 0, 2, 0, 128 | 0, () => DeploymentCanarySettings$, 2], 1
|
|
951
|
+
];
|
|
952
|
+
var CreateDocumentationPartRequest$ = [3, n0, _CDPR,
|
|
953
|
+
0,
|
|
954
|
+
[_rAI, _l, _pr],
|
|
955
|
+
[[0, 1], () => DocumentationPartLocation$, 0], 3
|
|
956
|
+
];
|
|
957
|
+
var CreateDocumentationVersionRequest$ = [3, n0, _CDVR,
|
|
958
|
+
0,
|
|
959
|
+
[_rAI, _dV, _sN, _d],
|
|
960
|
+
[[0, 1], 0, 0, 0], 2
|
|
961
|
+
];
|
|
962
|
+
var CreateDomainNameAccessAssociationRequest$ = [3, n0, _CDNAAR,
|
|
963
|
+
0,
|
|
964
|
+
[_dNA, _aAST, _aAS, _t],
|
|
965
|
+
[0, 0, 0, 128 | 0], 3
|
|
966
|
+
];
|
|
967
|
+
var CreateDomainNameRequest$ = [3, n0, _CDNR,
|
|
968
|
+
0,
|
|
969
|
+
[_dN, _cN, _cB, _cPK, _cC, _cA, _rCN, _rCA, _eC, _t, _sP, _eAM, _mTA, _oVCA, _po, _rM],
|
|
970
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration$, 128 | 0, 0, 0, () => MutualTlsAuthenticationInput$, 0, 0, 0], 1
|
|
971
|
+
];
|
|
972
|
+
var CreateModelRequest$ = [3, n0, _CMR,
|
|
973
|
+
0,
|
|
974
|
+
[_rAI, _n, _cT, _d, _sc],
|
|
975
|
+
[[0, 1], 0, 0, 0, 0], 3
|
|
976
|
+
];
|
|
977
|
+
var CreateRequestValidatorRequest$ = [3, n0, _CRVR,
|
|
978
|
+
0,
|
|
979
|
+
[_rAI, _n, _vRB, _vRP],
|
|
980
|
+
[[0, 1], 0, 2, 2], 1
|
|
981
|
+
];
|
|
982
|
+
var CreateResourceRequest$ = [3, n0, _CRR,
|
|
983
|
+
0,
|
|
984
|
+
[_rAI, _pI, _pP],
|
|
985
|
+
[[0, 1], [0, 1], 0], 3
|
|
986
|
+
];
|
|
987
|
+
var CreateRestApiRequest$ = [3, n0, _CRAR,
|
|
988
|
+
0,
|
|
989
|
+
[_n, _d, _ve, _cF, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _sP, _eAM],
|
|
990
|
+
[0, 0, 0, 0, 64 | 0, 1, 0, () => EndpointConfiguration$, 0, 128 | 0, 2, 0, 0], 1
|
|
991
|
+
];
|
|
992
|
+
var CreateStageRequest$ = [3, n0, _CSR,
|
|
993
|
+
0,
|
|
994
|
+
[_rAI, _sN, _dI, _d, _cCE, _cCS, _va, _dV, _cS, _tE, _t],
|
|
995
|
+
[[0, 1], 0, 0, 0, 2, 0, 128 | 0, 0, () => CanarySettings$, 2, 128 | 0], 3
|
|
996
|
+
];
|
|
997
|
+
var CreateUsagePlanKeyRequest$ = [3, n0, _CUPKR,
|
|
998
|
+
0,
|
|
999
|
+
[_uPI, _kI, _kT],
|
|
1000
|
+
[[0, 1], 0, 0], 3
|
|
1001
|
+
];
|
|
1002
|
+
var CreateUsagePlanRequest$ = [3, n0, _CUPR,
|
|
1003
|
+
0,
|
|
1004
|
+
[_n, _d, _aS, _th, _q, _t],
|
|
1005
|
+
[0, 0, () => ListOfApiStage, () => ThrottleSettings$, () => QuotaSettings$, 128 | 0], 1
|
|
1006
|
+
];
|
|
1007
|
+
var CreateVpcLinkRequest$ = [3, n0, _CVLR,
|
|
1008
|
+
0,
|
|
1009
|
+
[_n, _tA, _d, _t],
|
|
1010
|
+
[0, 64 | 0, 0, 128 | 0], 2
|
|
1011
|
+
];
|
|
1012
|
+
var DeleteApiKeyRequest$ = [3, n0, _DAKR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_aK],
|
|
1015
|
+
[[0, 1]], 1
|
|
1016
|
+
];
|
|
1017
|
+
var DeleteAuthorizerRequest$ = [3, n0, _DAR,
|
|
1018
|
+
0,
|
|
1019
|
+
[_rAI, _aIu],
|
|
1020
|
+
[[0, 1], [0, 1]], 2
|
|
1021
|
+
];
|
|
1022
|
+
var DeleteBasePathMappingRequest$ = [3, n0, _DBPMR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_dN, _bP, _dNI],
|
|
1025
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
|
|
1026
|
+
];
|
|
1027
|
+
var DeleteClientCertificateRequest$ = [3, n0, _DCCR,
|
|
1028
|
+
0,
|
|
1029
|
+
[_cCI],
|
|
1030
|
+
[[0, 1]], 1
|
|
1031
|
+
];
|
|
1032
|
+
var DeleteDeploymentRequest$ = [3, n0, _DDR,
|
|
1033
|
+
0,
|
|
1034
|
+
[_rAI, _dI],
|
|
1035
|
+
[[0, 1], [0, 1]], 2
|
|
1036
|
+
];
|
|
1037
|
+
var DeleteDocumentationPartRequest$ = [3, n0, _DDPR,
|
|
1038
|
+
0,
|
|
1039
|
+
[_rAI, _dPI],
|
|
1040
|
+
[[0, 1], [0, 1]], 2
|
|
1041
|
+
];
|
|
1042
|
+
var DeleteDocumentationVersionRequest$ = [3, n0, _DDVR,
|
|
1043
|
+
0,
|
|
1044
|
+
[_rAI, _dV],
|
|
1045
|
+
[[0, 1], [0, 1]], 2
|
|
1046
|
+
];
|
|
1047
|
+
var DeleteDomainNameAccessAssociationRequest$ = [3, n0, _DDNAAR,
|
|
1048
|
+
0,
|
|
1049
|
+
[_dNAAA],
|
|
1050
|
+
[[0, 1]], 1
|
|
1051
|
+
];
|
|
1052
|
+
var DeleteDomainNameRequest$ = [3, n0, _DDNR,
|
|
1053
|
+
0,
|
|
1054
|
+
[_dN, _dNI],
|
|
1055
|
+
[[0, 1], [0, { [_hQ]: _dNI }]], 1
|
|
1056
|
+
];
|
|
1057
|
+
var DeleteGatewayResponseRequest$ = [3, n0, _DGRR,
|
|
1058
|
+
0,
|
|
1059
|
+
[_rAI, _rT],
|
|
1060
|
+
[[0, 1], [0, 1]], 2
|
|
1061
|
+
];
|
|
1062
|
+
var DeleteIntegrationRequest$ = [3, n0, _DIR,
|
|
1063
|
+
0,
|
|
1064
|
+
[_rAI, _rI, _hM],
|
|
1065
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1066
|
+
];
|
|
1067
|
+
var DeleteIntegrationResponseRequest$ = [3, n0, _DIRR,
|
|
1068
|
+
0,
|
|
1069
|
+
[_rAI, _rI, _hM, _sC],
|
|
1070
|
+
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1071
|
+
];
|
|
1072
|
+
var DeleteMethodRequest$ = [3, n0, _DMR,
|
|
1073
|
+
0,
|
|
1074
|
+
[_rAI, _rI, _hM],
|
|
1075
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1076
|
+
];
|
|
1077
|
+
var DeleteMethodResponseRequest$ = [3, n0, _DMRR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_rAI, _rI, _hM, _sC],
|
|
1080
|
+
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1081
|
+
];
|
|
1082
|
+
var DeleteModelRequest$ = [3, n0, _DMRe,
|
|
1083
|
+
0,
|
|
1084
|
+
[_rAI, _mN],
|
|
1085
|
+
[[0, 1], [0, 1]], 2
|
|
1086
|
+
];
|
|
1087
|
+
var DeleteRequestValidatorRequest$ = [3, n0, _DRVR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_rAI, _rVI],
|
|
1090
|
+
[[0, 1], [0, 1]], 2
|
|
1091
|
+
];
|
|
1092
|
+
var DeleteResourceRequest$ = [3, n0, _DRR,
|
|
1093
|
+
0,
|
|
1094
|
+
[_rAI, _rI],
|
|
1095
|
+
[[0, 1], [0, 1]], 2
|
|
1096
|
+
];
|
|
1097
|
+
var DeleteRestApiRequest$ = [3, n0, _DRAR,
|
|
1098
|
+
0,
|
|
1099
|
+
[_rAI],
|
|
1100
|
+
[[0, 1]], 1
|
|
1101
|
+
];
|
|
1102
|
+
var DeleteStageRequest$ = [3, n0, _DSR,
|
|
1103
|
+
0,
|
|
1104
|
+
[_rAI, _sN],
|
|
1105
|
+
[[0, 1], [0, 1]], 2
|
|
1106
|
+
];
|
|
1107
|
+
var DeleteUsagePlanKeyRequest$ = [3, n0, _DUPKR,
|
|
1108
|
+
0,
|
|
1109
|
+
[_uPI, _kI],
|
|
1110
|
+
[[0, 1], [0, 1]], 2
|
|
1111
|
+
];
|
|
1112
|
+
var DeleteUsagePlanRequest$ = [3, n0, _DUPR,
|
|
1113
|
+
0,
|
|
1114
|
+
[_uPI],
|
|
1115
|
+
[[0, 1]], 1
|
|
1116
|
+
];
|
|
1117
|
+
var DeleteVpcLinkRequest$ = [3, n0, _DVLR,
|
|
1118
|
+
0,
|
|
1119
|
+
[_vLI],
|
|
1120
|
+
[[0, 1]], 1
|
|
1121
|
+
];
|
|
1122
|
+
var Deployment$ = [3, n0, _D,
|
|
1123
|
+
0,
|
|
1124
|
+
[_i, _d, _cD, _aSp],
|
|
1125
|
+
[0, 0, 4, () => PathToMapOfMethodSnapshot]
|
|
1126
|
+
];
|
|
1127
|
+
var DeploymentCanarySettings$ = [3, n0, _DCS,
|
|
1128
|
+
0,
|
|
1129
|
+
[_pT, _sVO, _uSC],
|
|
1130
|
+
[1, 128 | 0, 2]
|
|
1131
|
+
];
|
|
1132
|
+
var Deployments$ = [3, n0, _De,
|
|
1133
|
+
0,
|
|
1134
|
+
[_it, _p],
|
|
1135
|
+
[[() => ListOfDeployment, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1136
|
+
];
|
|
1137
|
+
var DocumentationPart$ = [3, n0, _DP,
|
|
1138
|
+
0,
|
|
1139
|
+
[_i, _l, _pr],
|
|
1140
|
+
[0, () => DocumentationPartLocation$, 0]
|
|
1141
|
+
];
|
|
1142
|
+
var DocumentationPartIds$ = [3, n0, _DPI,
|
|
1143
|
+
0,
|
|
1144
|
+
[_id, _w],
|
|
1145
|
+
[64 | 0, 64 | 0]
|
|
1146
|
+
];
|
|
1147
|
+
var DocumentationPartLocation$ = [3, n0, _DPL,
|
|
1148
|
+
0,
|
|
1149
|
+
[_ty, _pa, _me, _sC, _n],
|
|
1150
|
+
[0, 0, 0, 0, 0], 1
|
|
1151
|
+
];
|
|
1152
|
+
var DocumentationParts$ = [3, n0, _DPo,
|
|
1153
|
+
0,
|
|
1154
|
+
[_it, _p],
|
|
1155
|
+
[[() => ListOfDocumentationPart, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1156
|
+
];
|
|
1157
|
+
var DocumentationVersion$ = [3, n0, _DV,
|
|
1158
|
+
0,
|
|
1159
|
+
[_ve, _cD, _d],
|
|
1160
|
+
[0, 4, 0]
|
|
1161
|
+
];
|
|
1162
|
+
var DocumentationVersions$ = [3, n0, _DVo,
|
|
1163
|
+
0,
|
|
1164
|
+
[_it, _p],
|
|
1165
|
+
[[() => ListOfDocumentationVersion, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1166
|
+
];
|
|
1167
|
+
var DomainName$ = [3, n0, _DN,
|
|
1168
|
+
0,
|
|
1169
|
+
[_dN, _dNI, _dNA, _cN, _cA, _cUD, _rDN, _rHZI, _rCN, _rCA, _dDN, _dHZI, _eC, _dNS, _dNSM, _sP, _eAM, _t, _mTA, _oVCA, _mP, _po, _rM],
|
|
1170
|
+
[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration$, 0, 0, 0, 0, 128 | 0, () => MutualTlsAuthentication$, 0, 0, 0, 0]
|
|
1171
|
+
];
|
|
1172
|
+
var DomainNameAccessAssociation$ = [3, n0, _DNAA,
|
|
1173
|
+
0,
|
|
1174
|
+
[_dNAAA, _dNA, _aAST, _aAS, _t],
|
|
1175
|
+
[0, 0, 0, 0, 128 | 0]
|
|
1176
|
+
];
|
|
1177
|
+
var DomainNameAccessAssociations$ = [3, n0, _DNAAo,
|
|
1178
|
+
0,
|
|
1179
|
+
[_it, _p],
|
|
1180
|
+
[[() => ListOfDomainNameAccessAssociation, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1181
|
+
];
|
|
1182
|
+
var DomainNames$ = [3, n0, _DNo,
|
|
1183
|
+
0,
|
|
1184
|
+
[_it, _p],
|
|
1185
|
+
[[() => ListOfDomainName, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1186
|
+
];
|
|
1187
|
+
var EndpointConfiguration$ = [3, n0, _EC,
|
|
1188
|
+
0,
|
|
1189
|
+
[_typ, _iAT, _vEI],
|
|
1190
|
+
[64 | 0, 0, 64 | 0]
|
|
1191
|
+
];
|
|
1192
|
+
var ExportResponse$ = [3, n0, _ER,
|
|
1193
|
+
0,
|
|
1194
|
+
[_cT, _cDo, _b],
|
|
1195
|
+
[[0, { [_hH]: _CT }], [0, { [_hH]: _CD }], [21, 16]]
|
|
1196
|
+
];
|
|
1197
|
+
var FlushStageAuthorizersCacheRequest$ = [3, n0, _FSACR,
|
|
1198
|
+
0,
|
|
1199
|
+
[_rAI, _sN],
|
|
1200
|
+
[[0, 1], [0, 1]], 2
|
|
1201
|
+
];
|
|
1202
|
+
var FlushStageCacheRequest$ = [3, n0, _FSCR,
|
|
1203
|
+
0,
|
|
1204
|
+
[_rAI, _sN],
|
|
1205
|
+
[[0, 1], [0, 1]], 2
|
|
1206
|
+
];
|
|
1207
|
+
var GatewayResponse$ = [3, n0, _GR,
|
|
1208
|
+
0,
|
|
1209
|
+
[_rT, _sC, _rP, _rTe, _dR],
|
|
1210
|
+
[0, 0, 128 | 0, 128 | 0, 2]
|
|
1211
|
+
];
|
|
1212
|
+
var GatewayResponses$ = [3, n0, _GRa,
|
|
1213
|
+
0,
|
|
1214
|
+
[_it, _p],
|
|
1215
|
+
[[() => ListOfGatewayResponse, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1216
|
+
];
|
|
1217
|
+
var GenerateClientCertificateRequest$ = [3, n0, _GCCR,
|
|
1218
|
+
0,
|
|
1219
|
+
[_d, _t],
|
|
1220
|
+
[0, 128 | 0]
|
|
1221
|
+
];
|
|
1222
|
+
var GetAccountRequest$ = [3, n0, _GAR,
|
|
1223
|
+
0,
|
|
1224
|
+
[],
|
|
1225
|
+
[]
|
|
1226
|
+
];
|
|
1227
|
+
var GetApiKeyRequest$ = [3, n0, _GAKR,
|
|
1228
|
+
0,
|
|
1229
|
+
[_aK, _iV],
|
|
1230
|
+
[[0, 1], [2, { [_hQ]: _iV }]], 1
|
|
1231
|
+
];
|
|
1232
|
+
var GetApiKeysRequest$ = [3, n0, _GAKRe,
|
|
1233
|
+
0,
|
|
1234
|
+
[_p, _li, _nQ, _cI, _iVn],
|
|
1235
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _n }], [0, { [_hQ]: _cI }], [2, { [_hQ]: _iVn }]]
|
|
1236
|
+
];
|
|
1237
|
+
var GetAuthorizerRequest$ = [3, n0, _GARe,
|
|
1238
|
+
0,
|
|
1239
|
+
[_rAI, _aIu],
|
|
1240
|
+
[[0, 1], [0, 1]], 2
|
|
1241
|
+
];
|
|
1242
|
+
var GetAuthorizersRequest$ = [3, n0, _GARet,
|
|
1243
|
+
0,
|
|
1244
|
+
[_rAI, _p, _li],
|
|
1245
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1246
|
+
];
|
|
1247
|
+
var GetBasePathMappingRequest$ = [3, n0, _GBPMR,
|
|
1248
|
+
0,
|
|
1249
|
+
[_dN, _bP, _dNI],
|
|
1250
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
|
|
1251
|
+
];
|
|
1252
|
+
var GetBasePathMappingsRequest$ = [3, n0, _GBPMRe,
|
|
1253
|
+
0,
|
|
1254
|
+
[_dN, _dNI, _p, _li],
|
|
1255
|
+
[[0, 1], [0, { [_hQ]: _dNI }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1256
|
+
];
|
|
1257
|
+
var GetClientCertificateRequest$ = [3, n0, _GCCRe,
|
|
1258
|
+
0,
|
|
1259
|
+
[_cCI],
|
|
1260
|
+
[[0, 1]], 1
|
|
1261
|
+
];
|
|
1262
|
+
var GetClientCertificatesRequest$ = [3, n0, _GCCRet,
|
|
1263
|
+
0,
|
|
1264
|
+
[_p, _li],
|
|
1265
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1266
|
+
];
|
|
1267
|
+
var GetDeploymentRequest$ = [3, n0, _GDR,
|
|
1268
|
+
0,
|
|
1269
|
+
[_rAI, _dI, _em],
|
|
1270
|
+
[[0, 1], [0, 1], [64 | 0, { [_hQ]: _em }]], 2
|
|
1271
|
+
];
|
|
1272
|
+
var GetDeploymentsRequest$ = [3, n0, _GDRe,
|
|
1273
|
+
0,
|
|
1274
|
+
[_rAI, _p, _li],
|
|
1275
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1276
|
+
];
|
|
1277
|
+
var GetDocumentationPartRequest$ = [3, n0, _GDPR,
|
|
1278
|
+
0,
|
|
1279
|
+
[_rAI, _dPI],
|
|
1280
|
+
[[0, 1], [0, 1]], 2
|
|
1281
|
+
];
|
|
1282
|
+
var GetDocumentationPartsRequest$ = [3, n0, _GDPRe,
|
|
1283
|
+
0,
|
|
1284
|
+
[_rAI, _ty, _nQ, _pa, _p, _li, _lS],
|
|
1285
|
+
[[0, 1], [0, { [_hQ]: _ty }], [0, { [_hQ]: _n }], [0, { [_hQ]: _pa }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _lS }]], 1
|
|
1286
|
+
];
|
|
1287
|
+
var GetDocumentationVersionRequest$ = [3, n0, _GDVR,
|
|
1288
|
+
0,
|
|
1289
|
+
[_rAI, _dV],
|
|
1290
|
+
[[0, 1], [0, 1]], 2
|
|
1291
|
+
];
|
|
1292
|
+
var GetDocumentationVersionsRequest$ = [3, n0, _GDVRe,
|
|
1293
|
+
0,
|
|
1294
|
+
[_rAI, _p, _li],
|
|
1295
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1296
|
+
];
|
|
1297
|
+
var GetDomainNameAccessAssociationsRequest$ = [3, n0, _GDNAAR,
|
|
1298
|
+
0,
|
|
1299
|
+
[_p, _li, _rO],
|
|
1300
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _rO }]]
|
|
1301
|
+
];
|
|
1302
|
+
var GetDomainNameRequest$ = [3, n0, _GDNR,
|
|
1303
|
+
0,
|
|
1304
|
+
[_dN, _dNI],
|
|
1305
|
+
[[0, 1], [0, { [_hQ]: _dNI }]], 1
|
|
1306
|
+
];
|
|
1307
|
+
var GetDomainNamesRequest$ = [3, n0, _GDNRe,
|
|
1308
|
+
0,
|
|
1309
|
+
[_p, _li, _rO],
|
|
1310
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _rO }]]
|
|
1311
|
+
];
|
|
1312
|
+
var GetExportRequest$ = [3, n0, _GER,
|
|
1313
|
+
0,
|
|
1314
|
+
[_rAI, _sN, _eT, _par, _a],
|
|
1315
|
+
[[0, 1], [0, 1], [0, 1], [128 | 0, 64], [0, { [_hH]: _Ac }]], 3
|
|
1316
|
+
];
|
|
1317
|
+
var GetGatewayResponseRequest$ = [3, n0, _GGRR,
|
|
1318
|
+
0,
|
|
1319
|
+
[_rAI, _rT],
|
|
1320
|
+
[[0, 1], [0, 1]], 2
|
|
1321
|
+
];
|
|
1322
|
+
var GetGatewayResponsesRequest$ = [3, n0, _GGRRe,
|
|
1323
|
+
0,
|
|
1324
|
+
[_rAI, _p, _li],
|
|
1325
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1326
|
+
];
|
|
1327
|
+
var GetIntegrationRequest$ = [3, n0, _GIR,
|
|
1328
|
+
0,
|
|
1329
|
+
[_rAI, _rI, _hM],
|
|
1330
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1331
|
+
];
|
|
1332
|
+
var GetIntegrationResponseRequest$ = [3, n0, _GIRR,
|
|
1333
|
+
0,
|
|
1334
|
+
[_rAI, _rI, _hM, _sC],
|
|
1335
|
+
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1336
|
+
];
|
|
1337
|
+
var GetMethodRequest$ = [3, n0, _GMR,
|
|
1338
|
+
0,
|
|
1339
|
+
[_rAI, _rI, _hM],
|
|
1340
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1341
|
+
];
|
|
1342
|
+
var GetMethodResponseRequest$ = [3, n0, _GMRR,
|
|
1343
|
+
0,
|
|
1344
|
+
[_rAI, _rI, _hM, _sC],
|
|
1345
|
+
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1346
|
+
];
|
|
1347
|
+
var GetModelRequest$ = [3, n0, _GMRe,
|
|
1348
|
+
0,
|
|
1349
|
+
[_rAI, _mN, _fl],
|
|
1350
|
+
[[0, 1], [0, 1], [2, { [_hQ]: _fl }]], 2
|
|
1351
|
+
];
|
|
1352
|
+
var GetModelsRequest$ = [3, n0, _GMRet,
|
|
1353
|
+
0,
|
|
1354
|
+
[_rAI, _p, _li],
|
|
1355
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1356
|
+
];
|
|
1357
|
+
var GetModelTemplateRequest$ = [3, n0, _GMTR,
|
|
1358
|
+
0,
|
|
1359
|
+
[_rAI, _mN],
|
|
1360
|
+
[[0, 1], [0, 1]], 2
|
|
1361
|
+
];
|
|
1362
|
+
var GetRequestValidatorRequest$ = [3, n0, _GRVR,
|
|
1363
|
+
0,
|
|
1364
|
+
[_rAI, _rVI],
|
|
1365
|
+
[[0, 1], [0, 1]], 2
|
|
1366
|
+
];
|
|
1367
|
+
var GetRequestValidatorsRequest$ = [3, n0, _GRVRe,
|
|
1368
|
+
0,
|
|
1369
|
+
[_rAI, _p, _li],
|
|
1370
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1371
|
+
];
|
|
1372
|
+
var GetResourceRequest$ = [3, n0, _GRR,
|
|
1373
|
+
0,
|
|
1374
|
+
[_rAI, _rI, _em],
|
|
1375
|
+
[[0, 1], [0, 1], [64 | 0, { [_hQ]: _em }]], 2
|
|
1376
|
+
];
|
|
1377
|
+
var GetResourcesRequest$ = [3, n0, _GRRe,
|
|
1378
|
+
0,
|
|
1379
|
+
[_rAI, _p, _li, _em],
|
|
1380
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [64 | 0, { [_hQ]: _em }]], 1
|
|
1381
|
+
];
|
|
1382
|
+
var GetRestApiRequest$ = [3, n0, _GRAR,
|
|
1383
|
+
0,
|
|
1384
|
+
[_rAI],
|
|
1385
|
+
[[0, 1]], 1
|
|
1386
|
+
];
|
|
1387
|
+
var GetRestApisRequest$ = [3, n0, _GRARe,
|
|
1388
|
+
0,
|
|
1389
|
+
[_p, _li],
|
|
1390
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1391
|
+
];
|
|
1392
|
+
var GetSdkRequest$ = [3, n0, _GSR,
|
|
1393
|
+
0,
|
|
1394
|
+
[_rAI, _sN, _sT, _par],
|
|
1395
|
+
[[0, 1], [0, 1], [0, 1], [128 | 0, 64]], 3
|
|
1396
|
+
];
|
|
1397
|
+
var GetSdkTypeRequest$ = [3, n0, _GSTR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_i],
|
|
1400
|
+
[[0, 1]], 1
|
|
1401
|
+
];
|
|
1402
|
+
var GetSdkTypesRequest$ = [3, n0, _GSTRe,
|
|
1403
|
+
0,
|
|
1404
|
+
[_p, _li],
|
|
1405
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1406
|
+
];
|
|
1407
|
+
var GetStageRequest$ = [3, n0, _GSRe,
|
|
1408
|
+
0,
|
|
1409
|
+
[_rAI, _sN],
|
|
1410
|
+
[[0, 1], [0, 1]], 2
|
|
1411
|
+
];
|
|
1412
|
+
var GetStagesRequest$ = [3, n0, _GSRet,
|
|
1413
|
+
0,
|
|
1414
|
+
[_rAI, _dI],
|
|
1415
|
+
[[0, 1], [0, { [_hQ]: _dI }]], 1
|
|
1416
|
+
];
|
|
1417
|
+
var GetTagsRequest$ = [3, n0, _GTR,
|
|
1418
|
+
0,
|
|
1419
|
+
[_rA, _p, _li],
|
|
1420
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1421
|
+
];
|
|
1422
|
+
var GetUsagePlanKeyRequest$ = [3, n0, _GUPKR,
|
|
1423
|
+
0,
|
|
1424
|
+
[_uPI, _kI],
|
|
1425
|
+
[[0, 1], [0, 1]], 2
|
|
1426
|
+
];
|
|
1427
|
+
var GetUsagePlanKeysRequest$ = [3, n0, _GUPKRe,
|
|
1428
|
+
0,
|
|
1429
|
+
[_uPI, _p, _li, _nQ],
|
|
1430
|
+
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _n }]], 1
|
|
1431
|
+
];
|
|
1432
|
+
var GetUsagePlanRequest$ = [3, n0, _GUPR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_uPI],
|
|
1435
|
+
[[0, 1]], 1
|
|
1436
|
+
];
|
|
1437
|
+
var GetUsagePlansRequest$ = [3, n0, _GUPRe,
|
|
1438
|
+
0,
|
|
1439
|
+
[_p, _kI, _li],
|
|
1440
|
+
[[0, { [_hQ]: _p }], [0, { [_hQ]: _kI }], [1, { [_hQ]: _li }]]
|
|
1441
|
+
];
|
|
1442
|
+
var GetUsageRequest$ = [3, n0, _GUR,
|
|
1443
|
+
0,
|
|
1444
|
+
[_uPI, _sDt, _eDn, _kI, _p, _li],
|
|
1445
|
+
[[0, 1], [0, { [_hQ]: _sDt }], [0, { [_hQ]: _eDn }], [0, { [_hQ]: _kI }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 3
|
|
1446
|
+
];
|
|
1447
|
+
var GetVpcLinkRequest$ = [3, n0, _GVLR,
|
|
1448
|
+
0,
|
|
1449
|
+
[_vLI],
|
|
1450
|
+
[[0, 1]], 1
|
|
1451
|
+
];
|
|
1452
|
+
var GetVpcLinksRequest$ = [3, n0, _GVLRe,
|
|
1453
|
+
0,
|
|
1454
|
+
[_p, _li],
|
|
1455
|
+
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1456
|
+
];
|
|
1457
|
+
var ImportApiKeysRequest$ = [3, n0, _IAKR,
|
|
1458
|
+
0,
|
|
1459
|
+
[_b, _f, _fOW],
|
|
1460
|
+
[[21, 16], [0, { [_hQ]: _f }], [2, { [_hQ]: _fa }]], 2
|
|
1461
|
+
];
|
|
1462
|
+
var ImportDocumentationPartsRequest$ = [3, n0, _IDPR,
|
|
1463
|
+
0,
|
|
1464
|
+
[_rAI, _b, _mo, _fOW],
|
|
1465
|
+
[[0, 1], [21, 16], [0, { [_hQ]: _mo }], [2, { [_hQ]: _fa }]], 2
|
|
1466
|
+
];
|
|
1467
|
+
var ImportRestApiRequest$ = [3, n0, _IRAR,
|
|
1468
|
+
0,
|
|
1469
|
+
[_b, _fOW, _par],
|
|
1470
|
+
[[21, 16], [2, { [_hQ]: _fa }], [128 | 0, 64]], 1
|
|
1471
|
+
];
|
|
1472
|
+
var Integration$ = [3, n0, _I,
|
|
1473
|
+
0,
|
|
1474
|
+
[_ty, _hM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cH, _tIM, _cNa, _cKP, _iR, _tC, _rTM, _iT],
|
|
1475
|
+
[0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 1, 0, 64 | 0, () => MapOfIntegrationResponse, () => TlsConfig$, 0, 0]
|
|
1476
|
+
];
|
|
1477
|
+
var IntegrationResponse$ = [3, n0, _IR,
|
|
1478
|
+
0,
|
|
1479
|
+
[_sC, _sPe, _rP, _rTe, _cH],
|
|
1480
|
+
[0, 0, 128 | 0, 128 | 0, 0]
|
|
1481
|
+
];
|
|
1482
|
+
var Method$ = [3, n0, _M,
|
|
1483
|
+
0,
|
|
1484
|
+
[_hM, _aTu, _aIu, _aKR, _rVI, _oN, _rPe, _rMe, _mR, _mI, _aSu],
|
|
1485
|
+
[0, 0, 0, 2, 0, 0, 128 | 2, 128 | 0, () => MapOfMethodResponse, () => Integration$, 64 | 0]
|
|
1486
|
+
];
|
|
1487
|
+
var MethodResponse$ = [3, n0, _MR,
|
|
1488
|
+
0,
|
|
1489
|
+
[_sC, _rP, _rMes],
|
|
1490
|
+
[0, 128 | 2, 128 | 0]
|
|
1491
|
+
];
|
|
1492
|
+
var MethodSetting$ = [3, n0, _MS,
|
|
1493
|
+
0,
|
|
1494
|
+
[_mE, _lL, _dTE, _tBL, _tRL, _cE, _cTIS, _cDE, _rAFCC, _uCCHS],
|
|
1495
|
+
[2, 0, 2, 1, 1, 2, 1, 2, 2, 0]
|
|
1496
|
+
];
|
|
1497
|
+
var MethodSnapshot$ = [3, n0, _MSe,
|
|
1498
|
+
0,
|
|
1499
|
+
[_aTu, _aKR],
|
|
1500
|
+
[0, 2]
|
|
1501
|
+
];
|
|
1502
|
+
var Model$ = [3, n0, _Mo,
|
|
1503
|
+
0,
|
|
1504
|
+
[_i, _n, _d, _sc, _cT],
|
|
1505
|
+
[0, 0, 0, 0, 0]
|
|
1506
|
+
];
|
|
1507
|
+
var Models$ = [3, n0, _Mod,
|
|
1508
|
+
0,
|
|
1509
|
+
[_it, _p],
|
|
1510
|
+
[[() => ListOfModel, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1511
|
+
];
|
|
1512
|
+
var MutualTlsAuthentication$ = [3, n0, _MTA,
|
|
1513
|
+
0,
|
|
1514
|
+
[_tU, _tV, _tW],
|
|
1515
|
+
[0, 0, 64 | 0]
|
|
1516
|
+
];
|
|
1517
|
+
var MutualTlsAuthenticationInput$ = [3, n0, _MTAI,
|
|
1518
|
+
0,
|
|
1519
|
+
[_tU, _tV],
|
|
1520
|
+
[0, 0]
|
|
1521
|
+
];
|
|
1522
|
+
var PatchOperation$ = [3, n0, _PO,
|
|
1523
|
+
0,
|
|
1524
|
+
[_o, _pa, _v, _fr],
|
|
1525
|
+
[0, 0, 0, 0]
|
|
1526
|
+
];
|
|
1527
|
+
var PutGatewayResponseRequest$ = [3, n0, _PGRR,
|
|
1528
|
+
0,
|
|
1529
|
+
[_rAI, _rT, _sC, _rP, _rTe],
|
|
1530
|
+
[[0, 1], [0, 1], 0, 128 | 0, 128 | 0], 2
|
|
1531
|
+
];
|
|
1532
|
+
var PutIntegrationRequest$ = [3, n0, _PIR,
|
|
1533
|
+
0,
|
|
1534
|
+
[_rAI, _rI, _hM, _ty, _iHM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cNa, _cKP, _cH, _tIM, _tC, _rTM, _iT],
|
|
1535
|
+
[[0, 1], [0, 1], [0, { [_hL]: 1, [_jN]: _rHM }], 0, [0, { [_jN]: _hM }], 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 64 | 0, 0, 1, () => TlsConfig$, 0, 0], 4
|
|
1536
|
+
];
|
|
1537
|
+
var PutIntegrationResponseRequest$ = [3, n0, _PIRR,
|
|
1538
|
+
0,
|
|
1539
|
+
[_rAI, _rI, _hM, _sC, _sPe, _rP, _rTe, _cH],
|
|
1540
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], 0, 128 | 0, 128 | 0, 0], 4
|
|
1541
|
+
];
|
|
1542
|
+
var PutMethodRequest$ = [3, n0, _PMR,
|
|
1543
|
+
0,
|
|
1544
|
+
[_rAI, _rI, _hM, _aTu, _aIu, _aKR, _oN, _rPe, _rMe, _rVI, _aSu],
|
|
1545
|
+
[[0, 1], [0, 1], [0, 1], 0, 0, 2, 0, 128 | 2, 128 | 0, 0, 64 | 0], 4
|
|
1546
|
+
];
|
|
1547
|
+
var PutMethodResponseRequest$ = [3, n0, _PMRR,
|
|
1548
|
+
0,
|
|
1549
|
+
[_rAI, _rI, _hM, _sC, _rP, _rMes],
|
|
1550
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], 128 | 2, 128 | 0], 4
|
|
1551
|
+
];
|
|
1552
|
+
var PutRestApiRequest$ = [3, n0, _PRAR,
|
|
1553
|
+
0,
|
|
1554
|
+
[_rAI, _b, _mo, _fOW, _par],
|
|
1555
|
+
[[0, 1], [21, 16], [0, { [_hQ]: _mo }], [2, { [_hQ]: _fa }], [128 | 0, 64]], 2
|
|
1556
|
+
];
|
|
1557
|
+
var QuotaSettings$ = [3, n0, _QS,
|
|
1558
|
+
0,
|
|
1559
|
+
[_li, _of, _pe],
|
|
1560
|
+
[1, 1, 0]
|
|
1561
|
+
];
|
|
1562
|
+
var RejectDomainNameAccessAssociationRequest$ = [3, n0, _RDNAAR,
|
|
1563
|
+
0,
|
|
1564
|
+
[_dNAAA, _dNA],
|
|
1565
|
+
[[0, { [_hQ]: _dNAAA }], [0, { [_hQ]: _dNA }]], 2
|
|
1566
|
+
];
|
|
1567
|
+
var RequestValidator$ = [3, n0, _RV,
|
|
1568
|
+
0,
|
|
1569
|
+
[_i, _n, _vRB, _vRP],
|
|
1570
|
+
[0, 0, 2, 2]
|
|
1571
|
+
];
|
|
1572
|
+
var RequestValidators$ = [3, n0, _RVe,
|
|
1573
|
+
0,
|
|
1574
|
+
[_it, _p],
|
|
1575
|
+
[[() => ListOfRequestValidator, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1576
|
+
];
|
|
1577
|
+
var Resource$ = [3, n0, _R,
|
|
1578
|
+
0,
|
|
1579
|
+
[_i, _pI, _pP, _pa, _rMeso],
|
|
1580
|
+
[0, 0, 0, 0, () => MapOfMethod]
|
|
1581
|
+
];
|
|
1582
|
+
var Resources$ = [3, n0, _Re,
|
|
1583
|
+
0,
|
|
1584
|
+
[_it, _p],
|
|
1585
|
+
[[() => ListOfResource, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1586
|
+
];
|
|
1587
|
+
var RestApi$ = [3, n0, _RAe,
|
|
1588
|
+
0,
|
|
1589
|
+
[_i, _n, _d, _cD, _ve, _w, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _rRI, _sP, _eAM, _aSpi, _aSM],
|
|
1590
|
+
[0, 0, 0, 4, 0, 64 | 0, 64 | 0, 1, 0, () => EndpointConfiguration$, 0, 128 | 0, 2, 0, 0, 0, 0, 0]
|
|
1591
|
+
];
|
|
1592
|
+
var RestApis$ = [3, n0, _RAes,
|
|
1593
|
+
0,
|
|
1594
|
+
[_it, _p],
|
|
1595
|
+
[[() => ListOfRestApi, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1596
|
+
];
|
|
1597
|
+
var SdkConfigurationProperty$ = [3, n0, _SCP,
|
|
1598
|
+
0,
|
|
1599
|
+
[_n, _fN, _d, _r, _dVe],
|
|
1600
|
+
[0, 0, 0, 2, 0]
|
|
1601
|
+
];
|
|
1602
|
+
var SdkResponse$ = [3, n0, _SR,
|
|
1603
|
+
0,
|
|
1604
|
+
[_cT, _cDo, _b],
|
|
1605
|
+
[[0, { [_hH]: _CT }], [0, { [_hH]: _CD }], [21, 16]]
|
|
1606
|
+
];
|
|
1607
|
+
var SdkType$ = [3, n0, _ST,
|
|
1608
|
+
0,
|
|
1609
|
+
[_i, _fN, _d, _cP],
|
|
1610
|
+
[0, 0, 0, () => ListOfSdkConfigurationProperty]
|
|
1611
|
+
];
|
|
1612
|
+
var SdkTypes$ = [3, n0, _STd,
|
|
1613
|
+
0,
|
|
1614
|
+
[_it],
|
|
1615
|
+
[[() => ListOfSdkType, { [_jN]: _ite }]]
|
|
1616
|
+
];
|
|
1617
|
+
var Stage$ = [3, n0, _S,
|
|
1618
|
+
0,
|
|
1619
|
+
[_dI, _cCI, _sN, _d, _cCE, _cCS, _cCSa, _mS, _va, _dV, _aLS, _cS, _tE, _wAA, _t, _cD, _lUD],
|
|
1620
|
+
[0, 0, 0, 0, 2, 0, 0, () => MapOfMethodSettings, 128 | 0, 0, () => AccessLogSettings$, () => CanarySettings$, 2, 0, 128 | 0, 4, 4]
|
|
1621
|
+
];
|
|
1622
|
+
var StageKey$ = [3, n0, _SK,
|
|
1623
|
+
0,
|
|
1624
|
+
[_rAI, _sN],
|
|
1625
|
+
[0, 0]
|
|
1626
|
+
];
|
|
1627
|
+
var Stages$ = [3, n0, _St,
|
|
1628
|
+
0,
|
|
1629
|
+
[_ite],
|
|
1630
|
+
[() => ListOfStage]
|
|
1631
|
+
];
|
|
1632
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1633
|
+
0,
|
|
1634
|
+
[_rA, _t],
|
|
1635
|
+
[[0, 1], 128 | 0], 2
|
|
1636
|
+
];
|
|
1637
|
+
var Tags$ = [3, n0, _T,
|
|
1638
|
+
0,
|
|
1639
|
+
[_t],
|
|
1640
|
+
[128 | 0]
|
|
1641
|
+
];
|
|
1642
|
+
var Template$ = [3, n0, _Te,
|
|
1643
|
+
0,
|
|
1644
|
+
[_v],
|
|
1645
|
+
[0]
|
|
1646
|
+
];
|
|
1647
|
+
var TestInvokeAuthorizerRequest$ = [3, n0, _TIAR,
|
|
1648
|
+
0,
|
|
1649
|
+
[_rAI, _aIu, _h, _mVH, _pWQS, _b, _sV, _aCd],
|
|
1650
|
+
[[0, 1], [0, 1], 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 0, 128 | 0, 128 | 0], 2
|
|
1651
|
+
];
|
|
1652
|
+
var TestInvokeAuthorizerResponse$ = [3, n0, _TIARe,
|
|
1653
|
+
0,
|
|
1654
|
+
[_cSl, _lo, _la, _pIr, _po, _au, _cl],
|
|
1655
|
+
[1, 0, 1, 0, 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 128 | 0]
|
|
1656
|
+
];
|
|
1657
|
+
var TestInvokeMethodRequest$ = [3, n0, _TIMR,
|
|
1658
|
+
0,
|
|
1659
|
+
[_rAI, _rI, _hM, _pWQS, _b, _h, _mVH, _cCI, _sV],
|
|
1660
|
+
[[0, 1], [0, 1], [0, 1], 0, 0, 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 128 | 0], 3
|
|
1661
|
+
];
|
|
1662
|
+
var TestInvokeMethodResponse$ = [3, n0, _TIMRe,
|
|
1663
|
+
0,
|
|
1664
|
+
[_sta, _b, _h, _mVH, _lo, _la],
|
|
1665
|
+
[1, 0, 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 1]
|
|
1666
|
+
];
|
|
1667
|
+
var ThrottleSettings$ = [3, n0, _TS,
|
|
1668
|
+
0,
|
|
1669
|
+
[_bL, _rL],
|
|
1670
|
+
[1, 1]
|
|
1671
|
+
];
|
|
1672
|
+
var TlsConfig$ = [3, n0, _TC,
|
|
1673
|
+
0,
|
|
1674
|
+
[_iSV],
|
|
1675
|
+
[2]
|
|
1676
|
+
];
|
|
1677
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1678
|
+
0,
|
|
1679
|
+
[_rA, _tK],
|
|
1680
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1681
|
+
];
|
|
1682
|
+
var UpdateAccountRequest$ = [3, n0, _UAR,
|
|
1683
|
+
0,
|
|
1684
|
+
[_pO],
|
|
1685
|
+
[() => ListOfPatchOperation]
|
|
1686
|
+
];
|
|
1687
|
+
var UpdateApiKeyRequest$ = [3, n0, _UAKR,
|
|
1688
|
+
0,
|
|
1689
|
+
[_aK, _pO],
|
|
1690
|
+
[[0, 1], () => ListOfPatchOperation], 1
|
|
1691
|
+
];
|
|
1692
|
+
var UpdateAuthorizerRequest$ = [3, n0, _UARp,
|
|
1693
|
+
0,
|
|
1694
|
+
[_rAI, _aIu, _pO],
|
|
1695
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1696
|
+
];
|
|
1697
|
+
var UpdateBasePathMappingRequest$ = [3, n0, _UBPMR,
|
|
1698
|
+
0,
|
|
1699
|
+
[_dN, _bP, _dNI, _pO],
|
|
1700
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }], () => ListOfPatchOperation], 2
|
|
1701
|
+
];
|
|
1702
|
+
var UpdateClientCertificateRequest$ = [3, n0, _UCCR,
|
|
1703
|
+
0,
|
|
1704
|
+
[_cCI, _pO],
|
|
1705
|
+
[[0, 1], () => ListOfPatchOperation], 1
|
|
1706
|
+
];
|
|
1707
|
+
var UpdateDeploymentRequest$ = [3, n0, _UDR,
|
|
1708
|
+
0,
|
|
1709
|
+
[_rAI, _dI, _pO],
|
|
1710
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1711
|
+
];
|
|
1712
|
+
var UpdateDocumentationPartRequest$ = [3, n0, _UDPR,
|
|
1713
|
+
0,
|
|
1714
|
+
[_rAI, _dPI, _pO],
|
|
1715
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1716
|
+
];
|
|
1717
|
+
var UpdateDocumentationVersionRequest$ = [3, n0, _UDVR,
|
|
1718
|
+
0,
|
|
1719
|
+
[_rAI, _dV, _pO],
|
|
1720
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1721
|
+
];
|
|
1722
|
+
var UpdateDomainNameRequest$ = [3, n0, _UDNR,
|
|
1723
|
+
0,
|
|
1724
|
+
[_dN, _dNI, _pO],
|
|
1725
|
+
[[0, 1], [0, { [_hQ]: _dNI }], () => ListOfPatchOperation], 1
|
|
1726
|
+
];
|
|
1727
|
+
var UpdateGatewayResponseRequest$ = [3, n0, _UGRR,
|
|
1728
|
+
0,
|
|
1729
|
+
[_rAI, _rT, _pO],
|
|
1730
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1731
|
+
];
|
|
1732
|
+
var UpdateIntegrationRequest$ = [3, n0, _UIR,
|
|
1733
|
+
0,
|
|
1734
|
+
[_rAI, _rI, _hM, _pO],
|
|
1735
|
+
[[0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 3
|
|
1736
|
+
];
|
|
1737
|
+
var UpdateIntegrationResponseRequest$ = [3, n0, _UIRR,
|
|
1738
|
+
0,
|
|
1739
|
+
[_rAI, _rI, _hM, _sC, _pO],
|
|
1740
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 4
|
|
1741
|
+
];
|
|
1742
|
+
var UpdateMethodRequest$ = [3, n0, _UMR,
|
|
1743
|
+
0,
|
|
1744
|
+
[_rAI, _rI, _hM, _pO],
|
|
1745
|
+
[[0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 3
|
|
1746
|
+
];
|
|
1747
|
+
var UpdateMethodResponseRequest$ = [3, n0, _UMRR,
|
|
1748
|
+
0,
|
|
1749
|
+
[_rAI, _rI, _hM, _sC, _pO],
|
|
1750
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 4
|
|
1751
|
+
];
|
|
1752
|
+
var UpdateModelRequest$ = [3, n0, _UMRp,
|
|
1753
|
+
0,
|
|
1754
|
+
[_rAI, _mN, _pO],
|
|
1755
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1756
|
+
];
|
|
1757
|
+
var UpdateRequestValidatorRequest$ = [3, n0, _URVR,
|
|
1758
|
+
0,
|
|
1759
|
+
[_rAI, _rVI, _pO],
|
|
1760
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1761
|
+
];
|
|
1762
|
+
var UpdateResourceRequest$ = [3, n0, _URRp,
|
|
1763
|
+
0,
|
|
1764
|
+
[_rAI, _rI, _pO],
|
|
1765
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1766
|
+
];
|
|
1767
|
+
var UpdateRestApiRequest$ = [3, n0, _URAR,
|
|
1768
|
+
0,
|
|
1769
|
+
[_rAI, _pO],
|
|
1770
|
+
[[0, 1], () => ListOfPatchOperation], 1
|
|
1771
|
+
];
|
|
1772
|
+
var UpdateStageRequest$ = [3, n0, _USR,
|
|
1773
|
+
0,
|
|
1774
|
+
[_rAI, _sN, _pO],
|
|
1775
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1776
|
+
];
|
|
1777
|
+
var UpdateUsagePlanRequest$ = [3, n0, _UUPR,
|
|
1778
|
+
0,
|
|
1779
|
+
[_uPI, _pO],
|
|
1780
|
+
[[0, 1], () => ListOfPatchOperation], 1
|
|
1781
|
+
];
|
|
1782
|
+
var UpdateUsageRequest$ = [3, n0, _UUR,
|
|
1783
|
+
0,
|
|
1784
|
+
[_uPI, _kI, _pO],
|
|
1785
|
+
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1786
|
+
];
|
|
1787
|
+
var UpdateVpcLinkRequest$ = [3, n0, _UVLR,
|
|
1788
|
+
0,
|
|
1789
|
+
[_vLI, _pO],
|
|
1790
|
+
[[0, 1], () => ListOfPatchOperation], 1
|
|
1791
|
+
];
|
|
1792
|
+
var Usage$ = [3, n0, _U,
|
|
1793
|
+
0,
|
|
1794
|
+
[_uPI, _sDt, _eDn, _it, _p],
|
|
1795
|
+
[0, 0, 0, [[2, n0, _MOKU, 0, 0, [1, n0, _LOU, 0, 64 | 1]], { [_jN]: _val }], [0, { [_hQ]: _p }]]
|
|
1796
|
+
];
|
|
1797
|
+
var UsagePlan$ = [3, n0, _UP,
|
|
1798
|
+
0,
|
|
1799
|
+
[_i, _n, _d, _aS, _th, _q, _pC, _t],
|
|
1800
|
+
[0, 0, 0, () => ListOfApiStage, () => ThrottleSettings$, () => QuotaSettings$, 0, 128 | 0]
|
|
1801
|
+
];
|
|
1802
|
+
var UsagePlanKey$ = [3, n0, _UPK,
|
|
1803
|
+
0,
|
|
1804
|
+
[_i, _ty, _v, _n],
|
|
1805
|
+
[0, 0, 0, 0]
|
|
1806
|
+
];
|
|
1807
|
+
var UsagePlanKeys$ = [3, n0, _UPKs,
|
|
1808
|
+
0,
|
|
1809
|
+
[_it, _p],
|
|
1810
|
+
[[() => ListOfUsagePlanKey, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1811
|
+
];
|
|
1812
|
+
var UsagePlans$ = [3, n0, _UPs,
|
|
1813
|
+
0,
|
|
1814
|
+
[_it, _p],
|
|
1815
|
+
[[() => ListOfUsagePlan, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1816
|
+
];
|
|
1817
|
+
var VpcLink$ = [3, n0, _VL,
|
|
1818
|
+
0,
|
|
1819
|
+
[_i, _n, _d, _tA, _sta, _sM, _t],
|
|
1820
|
+
[0, 0, 0, 64 | 0, 0, 0, 128 | 0]
|
|
1821
|
+
];
|
|
1822
|
+
var VpcLinks$ = [3, n0, _VLp,
|
|
1823
|
+
0,
|
|
1824
|
+
[_it, _p],
|
|
1825
|
+
[[() => ListOfVpcLink, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1826
|
+
];
|
|
1827
|
+
var __Unit = "unit";
|
|
1828
|
+
var ListOfApiKey = [1, n0, _LOAK,
|
|
1829
|
+
0, () => ApiKey$
|
|
1830
|
+
];
|
|
1831
|
+
var ListOfApiStage = [1, n0, _LOAS,
|
|
1832
|
+
0, () => ApiStage$
|
|
1833
|
+
];
|
|
1834
|
+
var ListOfAuthorizer = [1, n0, _LOA,
|
|
1835
|
+
0, () => Authorizer$
|
|
1836
|
+
];
|
|
1837
|
+
var ListOfBasePathMapping = [1, n0, _LOBPM,
|
|
1838
|
+
0, () => BasePathMapping$
|
|
1839
|
+
];
|
|
1840
|
+
var ListOfClientCertificate = [1, n0, _LOCC,
|
|
1841
|
+
0, () => ClientCertificate$
|
|
1842
|
+
];
|
|
1843
|
+
var ListOfDeployment = [1, n0, _LOD,
|
|
1844
|
+
0, () => Deployment$
|
|
1845
|
+
];
|
|
1846
|
+
var ListOfDocumentationPart = [1, n0, _LODP,
|
|
1847
|
+
0, () => DocumentationPart$
|
|
1848
|
+
];
|
|
1849
|
+
var ListOfDocumentationVersion = [1, n0, _LODV,
|
|
1850
|
+
0, () => DocumentationVersion$
|
|
1851
|
+
];
|
|
1852
|
+
var ListOfDomainName = [1, n0, _LODN,
|
|
1853
|
+
0, () => DomainName$
|
|
1854
|
+
];
|
|
1855
|
+
var ListOfDomainNameAccessAssociation = [1, n0, _LODNAA,
|
|
1856
|
+
0, () => DomainNameAccessAssociation$
|
|
1857
|
+
];
|
|
1858
|
+
var ListOfGatewayResponse = [1, n0, _LOGR,
|
|
1859
|
+
0, () => GatewayResponse$
|
|
1860
|
+
];
|
|
1861
|
+
var ListOfModel = [1, n0, _LOM,
|
|
1862
|
+
0, () => Model$
|
|
1863
|
+
];
|
|
1864
|
+
var ListOfPatchOperation = [1, n0, _LOPO,
|
|
1865
|
+
0, () => PatchOperation$
|
|
1866
|
+
];
|
|
1867
|
+
var ListOfRequestValidator = [1, n0, _LORV,
|
|
1868
|
+
0, () => RequestValidator$
|
|
1869
|
+
];
|
|
1870
|
+
var ListOfResource = [1, n0, _LOR,
|
|
1871
|
+
0, () => Resource$
|
|
1872
|
+
];
|
|
1873
|
+
var ListOfRestApi = [1, n0, _LORA,
|
|
1874
|
+
0, () => RestApi$
|
|
1875
|
+
];
|
|
1876
|
+
var ListOfSdkConfigurationProperty = [1, n0, _LOSCP,
|
|
1877
|
+
0, () => SdkConfigurationProperty$
|
|
1878
|
+
];
|
|
1879
|
+
var ListOfSdkType = [1, n0, _LOST,
|
|
1880
|
+
0, () => SdkType$
|
|
1881
|
+
];
|
|
1882
|
+
var ListOfStage = [1, n0, _LOS,
|
|
1883
|
+
0, () => Stage$
|
|
1884
|
+
];
|
|
1885
|
+
var ListOfStageKeys = [1, n0, _LOSK,
|
|
1886
|
+
0, () => StageKey$
|
|
1887
|
+
];
|
|
1888
|
+
var ListOfUsagePlan = [1, n0, _LOUP,
|
|
1889
|
+
0, () => UsagePlan$
|
|
1890
|
+
];
|
|
1891
|
+
var ListOfUsagePlanKey = [1, n0, _LOUPK,
|
|
1892
|
+
0, () => UsagePlanKey$
|
|
1893
|
+
];
|
|
1894
|
+
var ListOfVpcLink = [1, n0, _LOVL,
|
|
1895
|
+
0, () => VpcLink$
|
|
1896
|
+
];
|
|
1897
|
+
var MapOfApiStageThrottleSettings = [2, n0, _MOASTS,
|
|
1898
|
+
0, 0, () => ThrottleSettings$
|
|
1899
|
+
];
|
|
1900
|
+
var MapOfIntegrationResponse = [2, n0, _MOIR,
|
|
1901
|
+
0, 0, () => IntegrationResponse$
|
|
1902
|
+
];
|
|
1903
|
+
var MapOfMethod = [2, n0, _MOM,
|
|
1904
|
+
0, 0, () => Method$
|
|
1905
|
+
];
|
|
1906
|
+
var MapOfMethodResponse = [2, n0, _MOMR,
|
|
1907
|
+
0, 0, () => MethodResponse$
|
|
1908
|
+
];
|
|
1909
|
+
var MapOfMethodSettings = [2, n0, _MOMS,
|
|
1910
|
+
0, 0, () => MethodSetting$
|
|
1911
|
+
];
|
|
1912
|
+
var MapOfMethodSnapshot = [2, n0, _MOMSa,
|
|
1913
|
+
0, 0, () => MethodSnapshot$
|
|
1914
|
+
];
|
|
1915
|
+
var PathToMapOfMethodSnapshot = [2, n0, _PTMOMS,
|
|
1916
|
+
0, 0, () => MapOfMethodSnapshot
|
|
1917
|
+
];
|
|
1918
|
+
var CreateApiKey$ = [9, n0, _CAK,
|
|
1919
|
+
{ [_ht]: ["POST", "/apikeys", 201] }, () => CreateApiKeyRequest$, () => ApiKey$
|
|
1920
|
+
];
|
|
1921
|
+
var CreateAuthorizer$ = [9, n0, _CA,
|
|
1922
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/authorizers", 201] }, () => CreateAuthorizerRequest$, () => Authorizer$
|
|
1923
|
+
];
|
|
1924
|
+
var CreateBasePathMapping$ = [9, n0, _CBPM,
|
|
1925
|
+
{ [_ht]: ["POST", "/domainnames/{domainName}/basepathmappings", 201] }, () => CreateBasePathMappingRequest$, () => BasePathMapping$
|
|
1926
|
+
];
|
|
1927
|
+
var CreateDeployment$ = [9, n0, _CDr,
|
|
1928
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/deployments", 201] }, () => CreateDeploymentRequest$, () => Deployment$
|
|
1929
|
+
];
|
|
1930
|
+
var CreateDocumentationPart$ = [9, n0, _CDP,
|
|
1931
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/documentation/parts", 201] }, () => CreateDocumentationPartRequest$, () => DocumentationPart$
|
|
1932
|
+
];
|
|
1933
|
+
var CreateDocumentationVersion$ = [9, n0, _CDV,
|
|
1934
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/documentation/versions", 201] }, () => CreateDocumentationVersionRequest$, () => DocumentationVersion$
|
|
1935
|
+
];
|
|
1936
|
+
var CreateDomainName$ = [9, n0, _CDN,
|
|
1937
|
+
{ [_ht]: ["POST", "/domainnames", 201] }, () => CreateDomainNameRequest$, () => DomainName$
|
|
1938
|
+
];
|
|
1939
|
+
var CreateDomainNameAccessAssociation$ = [9, n0, _CDNAA,
|
|
1940
|
+
{ [_ht]: ["POST", "/domainnameaccessassociations", 201] }, () => CreateDomainNameAccessAssociationRequest$, () => DomainNameAccessAssociation$
|
|
1941
|
+
];
|
|
1942
|
+
var CreateModel$ = [9, n0, _CM,
|
|
1943
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/models", 201] }, () => CreateModelRequest$, () => Model$
|
|
1944
|
+
];
|
|
1945
|
+
var CreateRequestValidator$ = [9, n0, _CRV,
|
|
1946
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/requestvalidators", 201] }, () => CreateRequestValidatorRequest$, () => RequestValidator$
|
|
1947
|
+
];
|
|
1948
|
+
var CreateResource$ = [9, n0, _CR,
|
|
1949
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/resources/{parentId}", 201] }, () => CreateResourceRequest$, () => Resource$
|
|
1950
|
+
];
|
|
1951
|
+
var CreateRestApi$ = [9, n0, _CRA,
|
|
1952
|
+
{ [_ht]: ["POST", "/restapis", 201] }, () => CreateRestApiRequest$, () => RestApi$
|
|
1953
|
+
];
|
|
1954
|
+
var CreateStage$ = [9, n0, _CSr,
|
|
1955
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/stages", 201] }, () => CreateStageRequest$, () => Stage$
|
|
1956
|
+
];
|
|
1957
|
+
var CreateUsagePlan$ = [9, n0, _CUP,
|
|
1958
|
+
{ [_ht]: ["POST", "/usageplans", 201] }, () => CreateUsagePlanRequest$, () => UsagePlan$
|
|
1959
|
+
];
|
|
1960
|
+
var CreateUsagePlanKey$ = [9, n0, _CUPK,
|
|
1961
|
+
{ [_ht]: ["POST", "/usageplans/{usagePlanId}/keys", 201] }, () => CreateUsagePlanKeyRequest$, () => UsagePlanKey$
|
|
1962
|
+
];
|
|
1963
|
+
var CreateVpcLink$ = [9, n0, _CVL,
|
|
1964
|
+
{ [_ht]: ["POST", "/vpclinks", 202] }, () => CreateVpcLinkRequest$, () => VpcLink$
|
|
1965
|
+
];
|
|
1966
|
+
var DeleteApiKey$ = [9, n0, _DAK,
|
|
1967
|
+
{ [_ht]: ["DELETE", "/apikeys/{apiKey}", 202] }, () => DeleteApiKeyRequest$, () => __Unit
|
|
1968
|
+
];
|
|
1969
|
+
var DeleteAuthorizer$ = [9, n0, _DA,
|
|
1970
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/authorizers/{authorizerId}", 202] }, () => DeleteAuthorizerRequest$, () => __Unit
|
|
1971
|
+
];
|
|
1972
|
+
var DeleteBasePathMapping$ = [9, n0, _DBPM,
|
|
1973
|
+
{ [_ht]: ["DELETE", "/domainnames/{domainName}/basepathmappings/{basePath}", 202] }, () => DeleteBasePathMappingRequest$, () => __Unit
|
|
1974
|
+
];
|
|
1975
|
+
var DeleteClientCertificate$ = [9, n0, _DCC,
|
|
1976
|
+
{ [_ht]: ["DELETE", "/clientcertificates/{clientCertificateId}", 202] }, () => DeleteClientCertificateRequest$, () => __Unit
|
|
1977
|
+
];
|
|
1978
|
+
var DeleteDeployment$ = [9, n0, _DD,
|
|
1979
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/deployments/{deploymentId}", 202] }, () => DeleteDeploymentRequest$, () => __Unit
|
|
1980
|
+
];
|
|
1981
|
+
var DeleteDocumentationPart$ = [9, n0, _DDP,
|
|
1982
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 202] }, () => DeleteDocumentationPartRequest$, () => __Unit
|
|
1983
|
+
];
|
|
1984
|
+
var DeleteDocumentationVersion$ = [9, n0, _DDV,
|
|
1985
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 202] }, () => DeleteDocumentationVersionRequest$, () => __Unit
|
|
1986
|
+
];
|
|
1987
|
+
var DeleteDomainName$ = [9, n0, _DDN,
|
|
1988
|
+
{ [_ht]: ["DELETE", "/domainnames/{domainName}", 202] }, () => DeleteDomainNameRequest$, () => __Unit
|
|
1989
|
+
];
|
|
1990
|
+
var DeleteDomainNameAccessAssociation$ = [9, n0, _DDNAA,
|
|
1991
|
+
{ [_ht]: ["DELETE", "/domainnameaccessassociations/{domainNameAccessAssociationArn}", 202] }, () => DeleteDomainNameAccessAssociationRequest$, () => __Unit
|
|
1992
|
+
];
|
|
1993
|
+
var DeleteGatewayResponse$ = [9, n0, _DGR,
|
|
1994
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/gatewayresponses/{responseType}", 202] }, () => DeleteGatewayResponseRequest$, () => __Unit
|
|
1995
|
+
];
|
|
1996
|
+
var DeleteIntegration$ = [9, n0, _DI,
|
|
1997
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 204] }, () => DeleteIntegrationRequest$, () => __Unit
|
|
1998
|
+
];
|
|
1999
|
+
var DeleteIntegrationResponse$ = [9, n0, _DIRe,
|
|
2000
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 204] }, () => DeleteIntegrationResponseRequest$, () => __Unit
|
|
2001
|
+
];
|
|
2002
|
+
var DeleteMethod$ = [9, n0, _DM,
|
|
2003
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 204] }, () => DeleteMethodRequest$, () => __Unit
|
|
2004
|
+
];
|
|
2005
|
+
var DeleteMethodResponse$ = [9, n0, _DMRel,
|
|
2006
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 204] }, () => DeleteMethodResponseRequest$, () => __Unit
|
|
2007
|
+
];
|
|
2008
|
+
var DeleteModel$ = [9, n0, _DMe,
|
|
2009
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/models/{modelName}", 202] }, () => DeleteModelRequest$, () => __Unit
|
|
2010
|
+
];
|
|
2011
|
+
var DeleteRequestValidator$ = [9, n0, _DRV,
|
|
2012
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 202] }, () => DeleteRequestValidatorRequest$, () => __Unit
|
|
2013
|
+
];
|
|
2014
|
+
var DeleteResource$ = [9, n0, _DR,
|
|
2015
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}", 202] }, () => DeleteResourceRequest$, () => __Unit
|
|
2016
|
+
];
|
|
2017
|
+
var DeleteRestApi$ = [9, n0, _DRA,
|
|
2018
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}", 202] }, () => DeleteRestApiRequest$, () => __Unit
|
|
2019
|
+
];
|
|
2020
|
+
var DeleteStage$ = [9, n0, _DS,
|
|
2021
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}", 202] }, () => DeleteStageRequest$, () => __Unit
|
|
2022
|
+
];
|
|
2023
|
+
var DeleteUsagePlan$ = [9, n0, _DUP,
|
|
2024
|
+
{ [_ht]: ["DELETE", "/usageplans/{usagePlanId}", 202] }, () => DeleteUsagePlanRequest$, () => __Unit
|
|
2025
|
+
];
|
|
2026
|
+
var DeleteUsagePlanKey$ = [9, n0, _DUPK,
|
|
2027
|
+
{ [_ht]: ["DELETE", "/usageplans/{usagePlanId}/keys/{keyId}", 202] }, () => DeleteUsagePlanKeyRequest$, () => __Unit
|
|
2028
|
+
];
|
|
2029
|
+
var DeleteVpcLink$ = [9, n0, _DVL,
|
|
2030
|
+
{ [_ht]: ["DELETE", "/vpclinks/{vpcLinkId}", 202] }, () => DeleteVpcLinkRequest$, () => __Unit
|
|
2031
|
+
];
|
|
2032
|
+
var FlushStageAuthorizersCache$ = [9, n0, _FSAC,
|
|
2033
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}/cache/authorizers", 202] }, () => FlushStageAuthorizersCacheRequest$, () => __Unit
|
|
2034
|
+
];
|
|
2035
|
+
var FlushStageCache$ = [9, n0, _FSC,
|
|
2036
|
+
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}/cache/data", 202] }, () => FlushStageCacheRequest$, () => __Unit
|
|
2037
|
+
];
|
|
2038
|
+
var GenerateClientCertificate$ = [9, n0, _GCC,
|
|
2039
|
+
{ [_ht]: ["POST", "/clientcertificates", 201] }, () => GenerateClientCertificateRequest$, () => ClientCertificate$
|
|
2040
|
+
];
|
|
2041
|
+
var GetAccount$ = [9, n0, _GA,
|
|
2042
|
+
{ [_ht]: ["GET", "/account", 200] }, () => GetAccountRequest$, () => Account$
|
|
2043
|
+
];
|
|
2044
|
+
var GetApiKey$ = [9, n0, _GAK,
|
|
2045
|
+
{ [_ht]: ["GET", "/apikeys/{apiKey}", 200] }, () => GetApiKeyRequest$, () => ApiKey$
|
|
2046
|
+
];
|
|
2047
|
+
var GetApiKeys$ = [9, n0, _GAKe,
|
|
2048
|
+
{ [_ht]: ["GET", "/apikeys", 200] }, () => GetApiKeysRequest$, () => ApiKeys$
|
|
2049
|
+
];
|
|
2050
|
+
var GetAuthorizer$ = [9, n0, _GAe,
|
|
2051
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => GetAuthorizerRequest$, () => Authorizer$
|
|
2052
|
+
];
|
|
2053
|
+
var GetAuthorizers$ = [9, n0, _GAet,
|
|
2054
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/authorizers", 200] }, () => GetAuthorizersRequest$, () => Authorizers$
|
|
2055
|
+
];
|
|
2056
|
+
var GetBasePathMapping$ = [9, n0, _GBPM,
|
|
2057
|
+
{ [_ht]: ["GET", "/domainnames/{domainName}/basepathmappings/{basePath}", 200] }, () => GetBasePathMappingRequest$, () => BasePathMapping$
|
|
2058
|
+
];
|
|
2059
|
+
var GetBasePathMappings$ = [9, n0, _GBPMe,
|
|
2060
|
+
{ [_ht]: ["GET", "/domainnames/{domainName}/basepathmappings", 200] }, () => GetBasePathMappingsRequest$, () => BasePathMappings$
|
|
2061
|
+
];
|
|
2062
|
+
var GetClientCertificate$ = [9, n0, _GCCe,
|
|
2063
|
+
{ [_ht]: ["GET", "/clientcertificates/{clientCertificateId}", 200] }, () => GetClientCertificateRequest$, () => ClientCertificate$
|
|
2064
|
+
];
|
|
2065
|
+
var GetClientCertificates$ = [9, n0, _GCCet,
|
|
2066
|
+
{ [_ht]: ["GET", "/clientcertificates", 200] }, () => GetClientCertificatesRequest$, () => ClientCertificates$
|
|
2067
|
+
];
|
|
2068
|
+
var GetDeployment$ = [9, n0, _GD,
|
|
2069
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/deployments/{deploymentId}", 200] }, () => GetDeploymentRequest$, () => Deployment$
|
|
2070
|
+
];
|
|
2071
|
+
var GetDeployments$ = [9, n0, _GDe,
|
|
2072
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/deployments", 200] }, () => GetDeploymentsRequest$, () => Deployments$
|
|
2073
|
+
];
|
|
2074
|
+
var GetDocumentationPart$ = [9, n0, _GDP,
|
|
2075
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 200] }, () => GetDocumentationPartRequest$, () => DocumentationPart$
|
|
2076
|
+
];
|
|
2077
|
+
var GetDocumentationParts$ = [9, n0, _GDPe,
|
|
2078
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/parts", 200] }, () => GetDocumentationPartsRequest$, () => DocumentationParts$
|
|
2079
|
+
];
|
|
2080
|
+
var GetDocumentationVersion$ = [9, n0, _GDV,
|
|
2081
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 200] }, () => GetDocumentationVersionRequest$, () => DocumentationVersion$
|
|
2082
|
+
];
|
|
2083
|
+
var GetDocumentationVersions$ = [9, n0, _GDVe,
|
|
2084
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/versions", 200] }, () => GetDocumentationVersionsRequest$, () => DocumentationVersions$
|
|
2085
|
+
];
|
|
2086
|
+
var GetDomainName$ = [9, n0, _GDN,
|
|
2087
|
+
{ [_ht]: ["GET", "/domainnames/{domainName}", 200] }, () => GetDomainNameRequest$, () => DomainName$
|
|
2088
|
+
];
|
|
2089
|
+
var GetDomainNameAccessAssociations$ = [9, n0, _GDNAA,
|
|
2090
|
+
{ [_ht]: ["GET", "/domainnameaccessassociations", 200] }, () => GetDomainNameAccessAssociationsRequest$, () => DomainNameAccessAssociations$
|
|
2091
|
+
];
|
|
2092
|
+
var GetDomainNames$ = [9, n0, _GDNe,
|
|
2093
|
+
{ [_ht]: ["GET", "/domainnames", 200] }, () => GetDomainNamesRequest$, () => DomainNames$
|
|
2094
|
+
];
|
|
2095
|
+
var GetExport$ = [9, n0, _GE,
|
|
2096
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}/exports/{exportType}", 200] }, () => GetExportRequest$, () => ExportResponse$
|
|
2097
|
+
];
|
|
2098
|
+
var GetGatewayResponse$ = [9, n0, _GGR,
|
|
2099
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/gatewayresponses/{responseType}", 200] }, () => GetGatewayResponseRequest$, () => GatewayResponse$
|
|
2100
|
+
];
|
|
2101
|
+
var GetGatewayResponses$ = [9, n0, _GGRe,
|
|
2102
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/gatewayresponses", 200] }, () => GetGatewayResponsesRequest$, () => GatewayResponses$
|
|
2103
|
+
];
|
|
2104
|
+
var GetIntegration$ = [9, n0, _GI,
|
|
2105
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 200] }, () => GetIntegrationRequest$, () => Integration$
|
|
2106
|
+
];
|
|
2107
|
+
var GetIntegrationResponse$ = [9, n0, _GIRe,
|
|
2108
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 200] }, () => GetIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2109
|
+
];
|
|
2110
|
+
var GetMethod$ = [9, n0, _GM,
|
|
2111
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => GetMethodRequest$, () => Method$
|
|
2112
|
+
];
|
|
2113
|
+
var GetMethodResponse$ = [9, n0, _GMRete,
|
|
2114
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 200] }, () => GetMethodResponseRequest$, () => MethodResponse$
|
|
2115
|
+
];
|
|
2116
|
+
var GetModel$ = [9, n0, _GMe,
|
|
2117
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/models/{modelName}", 200] }, () => GetModelRequest$, () => Model$
|
|
2118
|
+
];
|
|
2119
|
+
var GetModels$ = [9, n0, _GMet,
|
|
2120
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/models", 200] }, () => GetModelsRequest$, () => Models$
|
|
2121
|
+
];
|
|
2122
|
+
var GetModelTemplate$ = [9, n0, _GMT,
|
|
2123
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/models/{modelName}/default_template", 200] }, () => GetModelTemplateRequest$, () => Template$
|
|
2124
|
+
];
|
|
2125
|
+
var GetRequestValidator$ = [9, n0, _GRV,
|
|
2126
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 200] }, () => GetRequestValidatorRequest$, () => RequestValidator$
|
|
2127
|
+
];
|
|
2128
|
+
var GetRequestValidators$ = [9, n0, _GRVe,
|
|
2129
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/requestvalidators", 200] }, () => GetRequestValidatorsRequest$, () => RequestValidators$
|
|
2130
|
+
];
|
|
2131
|
+
var GetResource$ = [9, n0, _GRe,
|
|
2132
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}", 200] }, () => GetResourceRequest$, () => Resource$
|
|
2133
|
+
];
|
|
2134
|
+
var GetResources$ = [9, n0, _GRet,
|
|
2135
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/resources", 200] }, () => GetResourcesRequest$, () => Resources$
|
|
2136
|
+
];
|
|
2137
|
+
var GetRestApi$ = [9, n0, _GRA,
|
|
2138
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}", 200] }, () => GetRestApiRequest$, () => RestApi$
|
|
2139
|
+
];
|
|
2140
|
+
var GetRestApis$ = [9, n0, _GRAe,
|
|
2141
|
+
{ [_ht]: ["GET", "/restapis", 200] }, () => GetRestApisRequest$, () => RestApis$
|
|
2142
|
+
];
|
|
2143
|
+
var GetSdk$ = [9, n0, _GS,
|
|
2144
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}/sdks/{sdkType}", 200] }, () => GetSdkRequest$, () => SdkResponse$
|
|
2145
|
+
];
|
|
2146
|
+
var GetSdkType$ = [9, n0, _GST,
|
|
2147
|
+
{ [_ht]: ["GET", "/sdktypes/{id}", 200] }, () => GetSdkTypeRequest$, () => SdkType$
|
|
2148
|
+
];
|
|
2149
|
+
var GetSdkTypes$ = [9, n0, _GSTe,
|
|
2150
|
+
{ [_ht]: ["GET", "/sdktypes", 200] }, () => GetSdkTypesRequest$, () => SdkTypes$
|
|
2151
|
+
];
|
|
2152
|
+
var GetStage$ = [9, n0, _GSe,
|
|
2153
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}", 200] }, () => GetStageRequest$, () => Stage$
|
|
2154
|
+
];
|
|
2155
|
+
var GetStages$ = [9, n0, _GSet,
|
|
2156
|
+
{ [_ht]: ["GET", "/restapis/{restApiId}/stages", 200] }, () => GetStagesRequest$, () => Stages$
|
|
2157
|
+
];
|
|
2158
|
+
var GetTags$ = [9, n0, _GT,
|
|
2159
|
+
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => GetTagsRequest$, () => Tags$
|
|
2160
|
+
];
|
|
2161
|
+
var GetUsage$ = [9, n0, _GU,
|
|
2162
|
+
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/usage", 200] }, () => GetUsageRequest$, () => Usage$
|
|
2163
|
+
];
|
|
2164
|
+
var GetUsagePlan$ = [9, n0, _GUP,
|
|
2165
|
+
{ [_ht]: ["GET", "/usageplans/{usagePlanId}", 200] }, () => GetUsagePlanRequest$, () => UsagePlan$
|
|
2166
|
+
];
|
|
2167
|
+
var GetUsagePlanKey$ = [9, n0, _GUPK,
|
|
2168
|
+
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/keys/{keyId}", 200] }, () => GetUsagePlanKeyRequest$, () => UsagePlanKey$
|
|
2169
|
+
];
|
|
2170
|
+
var GetUsagePlanKeys$ = [9, n0, _GUPKe,
|
|
2171
|
+
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/keys", 200] }, () => GetUsagePlanKeysRequest$, () => UsagePlanKeys$
|
|
2172
|
+
];
|
|
2173
|
+
var GetUsagePlans$ = [9, n0, _GUPe,
|
|
2174
|
+
{ [_ht]: ["GET", "/usageplans", 200] }, () => GetUsagePlansRequest$, () => UsagePlans$
|
|
2175
|
+
];
|
|
2176
|
+
var GetVpcLink$ = [9, n0, _GVL,
|
|
2177
|
+
{ [_ht]: ["GET", "/vpclinks/{vpcLinkId}", 200] }, () => GetVpcLinkRequest$, () => VpcLink$
|
|
2178
|
+
];
|
|
2179
|
+
var GetVpcLinks$ = [9, n0, _GVLe,
|
|
2180
|
+
{ [_ht]: ["GET", "/vpclinks", 200] }, () => GetVpcLinksRequest$, () => VpcLinks$
|
|
2181
|
+
];
|
|
2182
|
+
var ImportApiKeys$ = [9, n0, _IAK,
|
|
2183
|
+
{ [_ht]: ["POST", "/apikeys?mode=import", 201] }, () => ImportApiKeysRequest$, () => ApiKeyIds$
|
|
2184
|
+
];
|
|
2185
|
+
var ImportDocumentationParts$ = [9, n0, _IDP,
|
|
2186
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/documentation/parts", 200] }, () => ImportDocumentationPartsRequest$, () => DocumentationPartIds$
|
|
2187
|
+
];
|
|
2188
|
+
var ImportRestApi$ = [9, n0, _IRA,
|
|
2189
|
+
{ [_ht]: ["POST", "/restapis?mode=import", 201] }, () => ImportRestApiRequest$, () => RestApi$
|
|
2190
|
+
];
|
|
2191
|
+
var PutGatewayResponse$ = [9, n0, _PGR,
|
|
2192
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/gatewayresponses/{responseType}", 201] }, () => PutGatewayResponseRequest$, () => GatewayResponse$
|
|
2193
|
+
];
|
|
2194
|
+
var PutIntegration$ = [9, n0, _PI,
|
|
2195
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 201] }, () => PutIntegrationRequest$, () => Integration$
|
|
2196
|
+
];
|
|
2197
|
+
var PutIntegrationResponse$ = [9, n0, _PIRu,
|
|
2198
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 201] }, () => PutIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2199
|
+
];
|
|
2200
|
+
var PutMethod$ = [9, n0, _PM,
|
|
2201
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 201] }, () => PutMethodRequest$, () => Method$
|
|
2202
|
+
];
|
|
2203
|
+
var PutMethodResponse$ = [9, n0, _PMRu,
|
|
2204
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 201] }, () => PutMethodResponseRequest$, () => MethodResponse$
|
|
2205
|
+
];
|
|
2206
|
+
var PutRestApi$ = [9, n0, _PRA,
|
|
2207
|
+
{ [_ht]: ["PUT", "/restapis/{restApiId}", 200] }, () => PutRestApiRequest$, () => RestApi$
|
|
2208
|
+
];
|
|
2209
|
+
var RejectDomainNameAccessAssociation$ = [9, n0, _RDNAA,
|
|
2210
|
+
{ [_ht]: ["POST", "/rejectdomainnameaccessassociations", 202] }, () => RejectDomainNameAccessAssociationRequest$, () => __Unit
|
|
2211
|
+
];
|
|
2212
|
+
var TagResource$ = [9, n0, _TR,
|
|
2213
|
+
{ [_ht]: ["PUT", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2214
|
+
];
|
|
2215
|
+
var TestInvokeAuthorizer$ = [9, n0, _TIA,
|
|
2216
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => TestInvokeAuthorizerRequest$, () => TestInvokeAuthorizerResponse$
|
|
2217
|
+
];
|
|
2218
|
+
var TestInvokeMethod$ = [9, n0, _TIM,
|
|
2219
|
+
{ [_ht]: ["POST", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => TestInvokeMethodRequest$, () => TestInvokeMethodResponse$
|
|
2220
|
+
];
|
|
2221
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2222
|
+
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2223
|
+
];
|
|
2224
|
+
var UpdateAccount$ = [9, n0, _UA,
|
|
2225
|
+
{ [_ht]: ["PATCH", "/account", 200] }, () => UpdateAccountRequest$, () => Account$
|
|
2226
|
+
];
|
|
2227
|
+
var UpdateApiKey$ = [9, n0, _UAK,
|
|
2228
|
+
{ [_ht]: ["PATCH", "/apikeys/{apiKey}", 200] }, () => UpdateApiKeyRequest$, () => ApiKey$
|
|
2229
|
+
];
|
|
2230
|
+
var UpdateAuthorizer$ = [9, n0, _UAp,
|
|
2231
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => UpdateAuthorizerRequest$, () => Authorizer$
|
|
2232
|
+
];
|
|
2233
|
+
var UpdateBasePathMapping$ = [9, n0, _UBPM,
|
|
2234
|
+
{ [_ht]: ["PATCH", "/domainnames/{domainName}/basepathmappings/{basePath}", 200] }, () => UpdateBasePathMappingRequest$, () => BasePathMapping$
|
|
2235
|
+
];
|
|
2236
|
+
var UpdateClientCertificate$ = [9, n0, _UCC,
|
|
2237
|
+
{ [_ht]: ["PATCH", "/clientcertificates/{clientCertificateId}", 200] }, () => UpdateClientCertificateRequest$, () => ClientCertificate$
|
|
2238
|
+
];
|
|
2239
|
+
var UpdateDeployment$ = [9, n0, _UD,
|
|
2240
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/deployments/{deploymentId}", 200] }, () => UpdateDeploymentRequest$, () => Deployment$
|
|
2241
|
+
];
|
|
2242
|
+
var UpdateDocumentationPart$ = [9, n0, _UDP,
|
|
2243
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 200] }, () => UpdateDocumentationPartRequest$, () => DocumentationPart$
|
|
2244
|
+
];
|
|
2245
|
+
var UpdateDocumentationVersion$ = [9, n0, _UDV,
|
|
2246
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 200] }, () => UpdateDocumentationVersionRequest$, () => DocumentationVersion$
|
|
2247
|
+
];
|
|
2248
|
+
var UpdateDomainName$ = [9, n0, _UDN,
|
|
2249
|
+
{ [_ht]: ["PATCH", "/domainnames/{domainName}", 200] }, () => UpdateDomainNameRequest$, () => DomainName$
|
|
2250
|
+
];
|
|
2251
|
+
var UpdateGatewayResponse$ = [9, n0, _UGR,
|
|
2252
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/gatewayresponses/{responseType}", 200] }, () => UpdateGatewayResponseRequest$, () => GatewayResponse$
|
|
2253
|
+
];
|
|
2254
|
+
var UpdateIntegration$ = [9, n0, _UI,
|
|
2255
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 200] }, () => UpdateIntegrationRequest$, () => Integration$
|
|
2256
|
+
];
|
|
2257
|
+
var UpdateIntegrationResponse$ = [9, n0, _UIRp,
|
|
2258
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 200] }, () => UpdateIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2259
|
+
];
|
|
2260
|
+
var UpdateMethod$ = [9, n0, _UM,
|
|
2261
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => UpdateMethodRequest$, () => Method$
|
|
2262
|
+
];
|
|
2263
|
+
var UpdateMethodResponse$ = [9, n0, _UMRpd,
|
|
2264
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 201] }, () => UpdateMethodResponseRequest$, () => MethodResponse$
|
|
2265
|
+
];
|
|
2266
|
+
var UpdateModel$ = [9, n0, _UMp,
|
|
2267
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/models/{modelName}", 200] }, () => UpdateModelRequest$, () => Model$
|
|
2268
|
+
];
|
|
2269
|
+
var UpdateRequestValidator$ = [9, n0, _URV,
|
|
2270
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 200] }, () => UpdateRequestValidatorRequest$, () => RequestValidator$
|
|
2271
|
+
];
|
|
2272
|
+
var UpdateResource$ = [9, n0, _URp,
|
|
2273
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}", 200] }, () => UpdateResourceRequest$, () => Resource$
|
|
2274
|
+
];
|
|
2275
|
+
var UpdateRestApi$ = [9, n0, _URA,
|
|
2276
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}", 200] }, () => UpdateRestApiRequest$, () => RestApi$
|
|
2277
|
+
];
|
|
2278
|
+
var UpdateStage$ = [9, n0, _US,
|
|
2279
|
+
{ [_ht]: ["PATCH", "/restapis/{restApiId}/stages/{stageName}", 200] }, () => UpdateStageRequest$, () => Stage$
|
|
2280
|
+
];
|
|
2281
|
+
var UpdateUsage$ = [9, n0, _UU,
|
|
2282
|
+
{ [_ht]: ["PATCH", "/usageplans/{usagePlanId}/keys/{keyId}/usage", 200] }, () => UpdateUsageRequest$, () => Usage$
|
|
2283
|
+
];
|
|
2284
|
+
var UpdateUsagePlan$ = [9, n0, _UUP,
|
|
2285
|
+
{ [_ht]: ["PATCH", "/usageplans/{usagePlanId}", 200] }, () => UpdateUsagePlanRequest$, () => UsagePlan$
|
|
2286
|
+
];
|
|
2287
|
+
var UpdateVpcLink$ = [9, n0, _UVL,
|
|
2288
|
+
{ [_ht]: ["PATCH", "/vpclinks/{vpcLinkId}", 200] }, () => UpdateVpcLinkRequest$, () => VpcLink$
|
|
2289
|
+
];
|
|
2290
|
+
|
|
2291
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2292
|
+
return {
|
|
2293
|
+
apiVersion: "2015-07-09",
|
|
2294
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2295
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2296
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2297
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2298
|
+
extensions: config?.extensions ?? [],
|
|
2299
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAPIGatewayHttpAuthSchemeProvider,
|
|
2300
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2301
|
+
{
|
|
2302
|
+
schemeId: "aws.auth#sigv4",
|
|
2303
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2304
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2305
|
+
},
|
|
2306
|
+
],
|
|
2307
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2308
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2309
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2310
|
+
defaultNamespace: "com.amazonaws.apigateway",
|
|
2311
|
+
errorTypeRegistries,
|
|
2312
|
+
version: "2015-07-09",
|
|
2313
|
+
serviceTarget: "BackplaneControlService",
|
|
2314
|
+
},
|
|
2315
|
+
serviceId: config?.serviceId ?? "API Gateway",
|
|
2316
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2317
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2318
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2319
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2320
|
+
};
|
|
2321
|
+
};
|
|
2322
|
+
|
|
2323
|
+
const getRuntimeConfig = (config) => {
|
|
2324
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2325
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2326
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2327
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2328
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2329
|
+
const loaderConfig = {
|
|
2330
|
+
profile: config?.profile,
|
|
2331
|
+
logger: clientSharedValues.logger,
|
|
2332
|
+
};
|
|
2333
|
+
return {
|
|
2334
|
+
...clientSharedValues,
|
|
2335
|
+
...config,
|
|
2336
|
+
runtime: "node",
|
|
2337
|
+
defaultsMode,
|
|
2338
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2339
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2340
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2341
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2342
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2343
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2344
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2345
|
+
retryMode: config?.retryMode ??
|
|
2346
|
+
loadConfig({
|
|
2347
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2348
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2349
|
+
}, config),
|
|
2350
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2351
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2352
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2353
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2354
|
+
};
|
|
2355
|
+
};
|
|
2356
|
+
|
|
35
2357
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
36
2358
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
37
2359
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1942,156 +4264,489 @@ const Op = {
|
|
|
1942
4264
|
|
|
1943
4265
|
exports.APIGateway = APIGateway;
|
|
1944
4266
|
exports.APIGatewayClient = APIGatewayClient;
|
|
4267
|
+
exports.APIGatewayServiceException = APIGatewayServiceException;
|
|
4268
|
+
exports.APIGatewayServiceException$ = APIGatewayServiceException$;
|
|
1945
4269
|
exports.AccessAssociationSourceType = AccessAssociationSourceType;
|
|
4270
|
+
exports.AccessLogSettings$ = AccessLogSettings$;
|
|
4271
|
+
exports.Account$ = Account$;
|
|
4272
|
+
exports.ApiKey$ = ApiKey$;
|
|
4273
|
+
exports.ApiKeyIds$ = ApiKeyIds$;
|
|
1946
4274
|
exports.ApiKeySourceType = ApiKeySourceType;
|
|
4275
|
+
exports.ApiKeys$ = ApiKeys$;
|
|
1947
4276
|
exports.ApiKeysFormat = ApiKeysFormat;
|
|
4277
|
+
exports.ApiStage$ = ApiStage$;
|
|
1948
4278
|
exports.ApiStatus = ApiStatus;
|
|
4279
|
+
exports.Authorizer$ = Authorizer$;
|
|
1949
4280
|
exports.AuthorizerType = AuthorizerType;
|
|
4281
|
+
exports.Authorizers$ = Authorizers$;
|
|
4282
|
+
exports.BadRequestException = BadRequestException;
|
|
4283
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
4284
|
+
exports.BasePathMapping$ = BasePathMapping$;
|
|
4285
|
+
exports.BasePathMappings$ = BasePathMappings$;
|
|
1950
4286
|
exports.CacheClusterSize = CacheClusterSize;
|
|
1951
4287
|
exports.CacheClusterStatus = CacheClusterStatus;
|
|
4288
|
+
exports.CanarySettings$ = CanarySettings$;
|
|
4289
|
+
exports.ClientCertificate$ = ClientCertificate$;
|
|
4290
|
+
exports.ClientCertificates$ = ClientCertificates$;
|
|
4291
|
+
exports.ConflictException = ConflictException;
|
|
4292
|
+
exports.ConflictException$ = ConflictException$;
|
|
1952
4293
|
exports.ConnectionType = ConnectionType;
|
|
1953
4294
|
exports.ContentHandlingStrategy = ContentHandlingStrategy;
|
|
4295
|
+
exports.CreateApiKey$ = CreateApiKey$;
|
|
1954
4296
|
exports.CreateApiKeyCommand = CreateApiKeyCommand;
|
|
4297
|
+
exports.CreateApiKeyRequest$ = CreateApiKeyRequest$;
|
|
4298
|
+
exports.CreateAuthorizer$ = CreateAuthorizer$;
|
|
1955
4299
|
exports.CreateAuthorizerCommand = CreateAuthorizerCommand;
|
|
4300
|
+
exports.CreateAuthorizerRequest$ = CreateAuthorizerRequest$;
|
|
4301
|
+
exports.CreateBasePathMapping$ = CreateBasePathMapping$;
|
|
1956
4302
|
exports.CreateBasePathMappingCommand = CreateBasePathMappingCommand;
|
|
4303
|
+
exports.CreateBasePathMappingRequest$ = CreateBasePathMappingRequest$;
|
|
4304
|
+
exports.CreateDeployment$ = CreateDeployment$;
|
|
1957
4305
|
exports.CreateDeploymentCommand = CreateDeploymentCommand;
|
|
4306
|
+
exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
|
|
4307
|
+
exports.CreateDocumentationPart$ = CreateDocumentationPart$;
|
|
1958
4308
|
exports.CreateDocumentationPartCommand = CreateDocumentationPartCommand;
|
|
4309
|
+
exports.CreateDocumentationPartRequest$ = CreateDocumentationPartRequest$;
|
|
4310
|
+
exports.CreateDocumentationVersion$ = CreateDocumentationVersion$;
|
|
1959
4311
|
exports.CreateDocumentationVersionCommand = CreateDocumentationVersionCommand;
|
|
4312
|
+
exports.CreateDocumentationVersionRequest$ = CreateDocumentationVersionRequest$;
|
|
4313
|
+
exports.CreateDomainName$ = CreateDomainName$;
|
|
4314
|
+
exports.CreateDomainNameAccessAssociation$ = CreateDomainNameAccessAssociation$;
|
|
1960
4315
|
exports.CreateDomainNameAccessAssociationCommand = CreateDomainNameAccessAssociationCommand;
|
|
4316
|
+
exports.CreateDomainNameAccessAssociationRequest$ = CreateDomainNameAccessAssociationRequest$;
|
|
1961
4317
|
exports.CreateDomainNameCommand = CreateDomainNameCommand;
|
|
4318
|
+
exports.CreateDomainNameRequest$ = CreateDomainNameRequest$;
|
|
4319
|
+
exports.CreateModel$ = CreateModel$;
|
|
1962
4320
|
exports.CreateModelCommand = CreateModelCommand;
|
|
4321
|
+
exports.CreateModelRequest$ = CreateModelRequest$;
|
|
4322
|
+
exports.CreateRequestValidator$ = CreateRequestValidator$;
|
|
1963
4323
|
exports.CreateRequestValidatorCommand = CreateRequestValidatorCommand;
|
|
4324
|
+
exports.CreateRequestValidatorRequest$ = CreateRequestValidatorRequest$;
|
|
4325
|
+
exports.CreateResource$ = CreateResource$;
|
|
1964
4326
|
exports.CreateResourceCommand = CreateResourceCommand;
|
|
4327
|
+
exports.CreateResourceRequest$ = CreateResourceRequest$;
|
|
4328
|
+
exports.CreateRestApi$ = CreateRestApi$;
|
|
1965
4329
|
exports.CreateRestApiCommand = CreateRestApiCommand;
|
|
4330
|
+
exports.CreateRestApiRequest$ = CreateRestApiRequest$;
|
|
4331
|
+
exports.CreateStage$ = CreateStage$;
|
|
1966
4332
|
exports.CreateStageCommand = CreateStageCommand;
|
|
4333
|
+
exports.CreateStageRequest$ = CreateStageRequest$;
|
|
4334
|
+
exports.CreateUsagePlan$ = CreateUsagePlan$;
|
|
1967
4335
|
exports.CreateUsagePlanCommand = CreateUsagePlanCommand;
|
|
4336
|
+
exports.CreateUsagePlanKey$ = CreateUsagePlanKey$;
|
|
1968
4337
|
exports.CreateUsagePlanKeyCommand = CreateUsagePlanKeyCommand;
|
|
4338
|
+
exports.CreateUsagePlanKeyRequest$ = CreateUsagePlanKeyRequest$;
|
|
4339
|
+
exports.CreateUsagePlanRequest$ = CreateUsagePlanRequest$;
|
|
4340
|
+
exports.CreateVpcLink$ = CreateVpcLink$;
|
|
1969
4341
|
exports.CreateVpcLinkCommand = CreateVpcLinkCommand;
|
|
4342
|
+
exports.CreateVpcLinkRequest$ = CreateVpcLinkRequest$;
|
|
4343
|
+
exports.DeleteApiKey$ = DeleteApiKey$;
|
|
1970
4344
|
exports.DeleteApiKeyCommand = DeleteApiKeyCommand;
|
|
4345
|
+
exports.DeleteApiKeyRequest$ = DeleteApiKeyRequest$;
|
|
4346
|
+
exports.DeleteAuthorizer$ = DeleteAuthorizer$;
|
|
1971
4347
|
exports.DeleteAuthorizerCommand = DeleteAuthorizerCommand;
|
|
4348
|
+
exports.DeleteAuthorizerRequest$ = DeleteAuthorizerRequest$;
|
|
4349
|
+
exports.DeleteBasePathMapping$ = DeleteBasePathMapping$;
|
|
1972
4350
|
exports.DeleteBasePathMappingCommand = DeleteBasePathMappingCommand;
|
|
4351
|
+
exports.DeleteBasePathMappingRequest$ = DeleteBasePathMappingRequest$;
|
|
4352
|
+
exports.DeleteClientCertificate$ = DeleteClientCertificate$;
|
|
1973
4353
|
exports.DeleteClientCertificateCommand = DeleteClientCertificateCommand;
|
|
4354
|
+
exports.DeleteClientCertificateRequest$ = DeleteClientCertificateRequest$;
|
|
4355
|
+
exports.DeleteDeployment$ = DeleteDeployment$;
|
|
1974
4356
|
exports.DeleteDeploymentCommand = DeleteDeploymentCommand;
|
|
4357
|
+
exports.DeleteDeploymentRequest$ = DeleteDeploymentRequest$;
|
|
4358
|
+
exports.DeleteDocumentationPart$ = DeleteDocumentationPart$;
|
|
1975
4359
|
exports.DeleteDocumentationPartCommand = DeleteDocumentationPartCommand;
|
|
4360
|
+
exports.DeleteDocumentationPartRequest$ = DeleteDocumentationPartRequest$;
|
|
4361
|
+
exports.DeleteDocumentationVersion$ = DeleteDocumentationVersion$;
|
|
1976
4362
|
exports.DeleteDocumentationVersionCommand = DeleteDocumentationVersionCommand;
|
|
4363
|
+
exports.DeleteDocumentationVersionRequest$ = DeleteDocumentationVersionRequest$;
|
|
4364
|
+
exports.DeleteDomainName$ = DeleteDomainName$;
|
|
4365
|
+
exports.DeleteDomainNameAccessAssociation$ = DeleteDomainNameAccessAssociation$;
|
|
1977
4366
|
exports.DeleteDomainNameAccessAssociationCommand = DeleteDomainNameAccessAssociationCommand;
|
|
4367
|
+
exports.DeleteDomainNameAccessAssociationRequest$ = DeleteDomainNameAccessAssociationRequest$;
|
|
1978
4368
|
exports.DeleteDomainNameCommand = DeleteDomainNameCommand;
|
|
4369
|
+
exports.DeleteDomainNameRequest$ = DeleteDomainNameRequest$;
|
|
4370
|
+
exports.DeleteGatewayResponse$ = DeleteGatewayResponse$;
|
|
1979
4371
|
exports.DeleteGatewayResponseCommand = DeleteGatewayResponseCommand;
|
|
4372
|
+
exports.DeleteGatewayResponseRequest$ = DeleteGatewayResponseRequest$;
|
|
4373
|
+
exports.DeleteIntegration$ = DeleteIntegration$;
|
|
1980
4374
|
exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
|
|
4375
|
+
exports.DeleteIntegrationRequest$ = DeleteIntegrationRequest$;
|
|
4376
|
+
exports.DeleteIntegrationResponse$ = DeleteIntegrationResponse$;
|
|
1981
4377
|
exports.DeleteIntegrationResponseCommand = DeleteIntegrationResponseCommand;
|
|
4378
|
+
exports.DeleteIntegrationResponseRequest$ = DeleteIntegrationResponseRequest$;
|
|
4379
|
+
exports.DeleteMethod$ = DeleteMethod$;
|
|
1982
4380
|
exports.DeleteMethodCommand = DeleteMethodCommand;
|
|
4381
|
+
exports.DeleteMethodRequest$ = DeleteMethodRequest$;
|
|
4382
|
+
exports.DeleteMethodResponse$ = DeleteMethodResponse$;
|
|
1983
4383
|
exports.DeleteMethodResponseCommand = DeleteMethodResponseCommand;
|
|
4384
|
+
exports.DeleteMethodResponseRequest$ = DeleteMethodResponseRequest$;
|
|
4385
|
+
exports.DeleteModel$ = DeleteModel$;
|
|
1984
4386
|
exports.DeleteModelCommand = DeleteModelCommand;
|
|
4387
|
+
exports.DeleteModelRequest$ = DeleteModelRequest$;
|
|
4388
|
+
exports.DeleteRequestValidator$ = DeleteRequestValidator$;
|
|
1985
4389
|
exports.DeleteRequestValidatorCommand = DeleteRequestValidatorCommand;
|
|
4390
|
+
exports.DeleteRequestValidatorRequest$ = DeleteRequestValidatorRequest$;
|
|
4391
|
+
exports.DeleteResource$ = DeleteResource$;
|
|
1986
4392
|
exports.DeleteResourceCommand = DeleteResourceCommand;
|
|
4393
|
+
exports.DeleteResourceRequest$ = DeleteResourceRequest$;
|
|
4394
|
+
exports.DeleteRestApi$ = DeleteRestApi$;
|
|
1987
4395
|
exports.DeleteRestApiCommand = DeleteRestApiCommand;
|
|
4396
|
+
exports.DeleteRestApiRequest$ = DeleteRestApiRequest$;
|
|
4397
|
+
exports.DeleteStage$ = DeleteStage$;
|
|
1988
4398
|
exports.DeleteStageCommand = DeleteStageCommand;
|
|
4399
|
+
exports.DeleteStageRequest$ = DeleteStageRequest$;
|
|
4400
|
+
exports.DeleteUsagePlan$ = DeleteUsagePlan$;
|
|
1989
4401
|
exports.DeleteUsagePlanCommand = DeleteUsagePlanCommand;
|
|
4402
|
+
exports.DeleteUsagePlanKey$ = DeleteUsagePlanKey$;
|
|
1990
4403
|
exports.DeleteUsagePlanKeyCommand = DeleteUsagePlanKeyCommand;
|
|
4404
|
+
exports.DeleteUsagePlanKeyRequest$ = DeleteUsagePlanKeyRequest$;
|
|
4405
|
+
exports.DeleteUsagePlanRequest$ = DeleteUsagePlanRequest$;
|
|
4406
|
+
exports.DeleteVpcLink$ = DeleteVpcLink$;
|
|
1991
4407
|
exports.DeleteVpcLinkCommand = DeleteVpcLinkCommand;
|
|
4408
|
+
exports.DeleteVpcLinkRequest$ = DeleteVpcLinkRequest$;
|
|
4409
|
+
exports.Deployment$ = Deployment$;
|
|
4410
|
+
exports.DeploymentCanarySettings$ = DeploymentCanarySettings$;
|
|
4411
|
+
exports.Deployments$ = Deployments$;
|
|
4412
|
+
exports.DocumentationPart$ = DocumentationPart$;
|
|
4413
|
+
exports.DocumentationPartIds$ = DocumentationPartIds$;
|
|
4414
|
+
exports.DocumentationPartLocation$ = DocumentationPartLocation$;
|
|
1992
4415
|
exports.DocumentationPartType = DocumentationPartType;
|
|
4416
|
+
exports.DocumentationParts$ = DocumentationParts$;
|
|
4417
|
+
exports.DocumentationVersion$ = DocumentationVersion$;
|
|
4418
|
+
exports.DocumentationVersions$ = DocumentationVersions$;
|
|
4419
|
+
exports.DomainName$ = DomainName$;
|
|
4420
|
+
exports.DomainNameAccessAssociation$ = DomainNameAccessAssociation$;
|
|
4421
|
+
exports.DomainNameAccessAssociations$ = DomainNameAccessAssociations$;
|
|
1993
4422
|
exports.DomainNameStatus = DomainNameStatus;
|
|
4423
|
+
exports.DomainNames$ = DomainNames$;
|
|
1994
4424
|
exports.EndpointAccessMode = EndpointAccessMode;
|
|
4425
|
+
exports.EndpointConfiguration$ = EndpointConfiguration$;
|
|
1995
4426
|
exports.EndpointType = EndpointType;
|
|
4427
|
+
exports.ExportResponse$ = ExportResponse$;
|
|
4428
|
+
exports.FlushStageAuthorizersCache$ = FlushStageAuthorizersCache$;
|
|
1996
4429
|
exports.FlushStageAuthorizersCacheCommand = FlushStageAuthorizersCacheCommand;
|
|
4430
|
+
exports.FlushStageAuthorizersCacheRequest$ = FlushStageAuthorizersCacheRequest$;
|
|
4431
|
+
exports.FlushStageCache$ = FlushStageCache$;
|
|
1997
4432
|
exports.FlushStageCacheCommand = FlushStageCacheCommand;
|
|
4433
|
+
exports.FlushStageCacheRequest$ = FlushStageCacheRequest$;
|
|
4434
|
+
exports.GatewayResponse$ = GatewayResponse$;
|
|
1998
4435
|
exports.GatewayResponseType = GatewayResponseType;
|
|
4436
|
+
exports.GatewayResponses$ = GatewayResponses$;
|
|
4437
|
+
exports.GenerateClientCertificate$ = GenerateClientCertificate$;
|
|
1999
4438
|
exports.GenerateClientCertificateCommand = GenerateClientCertificateCommand;
|
|
4439
|
+
exports.GenerateClientCertificateRequest$ = GenerateClientCertificateRequest$;
|
|
4440
|
+
exports.GetAccount$ = GetAccount$;
|
|
2000
4441
|
exports.GetAccountCommand = GetAccountCommand;
|
|
4442
|
+
exports.GetAccountRequest$ = GetAccountRequest$;
|
|
4443
|
+
exports.GetApiKey$ = GetApiKey$;
|
|
2001
4444
|
exports.GetApiKeyCommand = GetApiKeyCommand;
|
|
4445
|
+
exports.GetApiKeyRequest$ = GetApiKeyRequest$;
|
|
4446
|
+
exports.GetApiKeys$ = GetApiKeys$;
|
|
2002
4447
|
exports.GetApiKeysCommand = GetApiKeysCommand;
|
|
4448
|
+
exports.GetApiKeysRequest$ = GetApiKeysRequest$;
|
|
4449
|
+
exports.GetAuthorizer$ = GetAuthorizer$;
|
|
2003
4450
|
exports.GetAuthorizerCommand = GetAuthorizerCommand;
|
|
4451
|
+
exports.GetAuthorizerRequest$ = GetAuthorizerRequest$;
|
|
4452
|
+
exports.GetAuthorizers$ = GetAuthorizers$;
|
|
2004
4453
|
exports.GetAuthorizersCommand = GetAuthorizersCommand;
|
|
4454
|
+
exports.GetAuthorizersRequest$ = GetAuthorizersRequest$;
|
|
4455
|
+
exports.GetBasePathMapping$ = GetBasePathMapping$;
|
|
2005
4456
|
exports.GetBasePathMappingCommand = GetBasePathMappingCommand;
|
|
4457
|
+
exports.GetBasePathMappingRequest$ = GetBasePathMappingRequest$;
|
|
4458
|
+
exports.GetBasePathMappings$ = GetBasePathMappings$;
|
|
2006
4459
|
exports.GetBasePathMappingsCommand = GetBasePathMappingsCommand;
|
|
4460
|
+
exports.GetBasePathMappingsRequest$ = GetBasePathMappingsRequest$;
|
|
4461
|
+
exports.GetClientCertificate$ = GetClientCertificate$;
|
|
2007
4462
|
exports.GetClientCertificateCommand = GetClientCertificateCommand;
|
|
4463
|
+
exports.GetClientCertificateRequest$ = GetClientCertificateRequest$;
|
|
4464
|
+
exports.GetClientCertificates$ = GetClientCertificates$;
|
|
2008
4465
|
exports.GetClientCertificatesCommand = GetClientCertificatesCommand;
|
|
4466
|
+
exports.GetClientCertificatesRequest$ = GetClientCertificatesRequest$;
|
|
4467
|
+
exports.GetDeployment$ = GetDeployment$;
|
|
2009
4468
|
exports.GetDeploymentCommand = GetDeploymentCommand;
|
|
4469
|
+
exports.GetDeploymentRequest$ = GetDeploymentRequest$;
|
|
4470
|
+
exports.GetDeployments$ = GetDeployments$;
|
|
2010
4471
|
exports.GetDeploymentsCommand = GetDeploymentsCommand;
|
|
4472
|
+
exports.GetDeploymentsRequest$ = GetDeploymentsRequest$;
|
|
4473
|
+
exports.GetDocumentationPart$ = GetDocumentationPart$;
|
|
2011
4474
|
exports.GetDocumentationPartCommand = GetDocumentationPartCommand;
|
|
4475
|
+
exports.GetDocumentationPartRequest$ = GetDocumentationPartRequest$;
|
|
4476
|
+
exports.GetDocumentationParts$ = GetDocumentationParts$;
|
|
2012
4477
|
exports.GetDocumentationPartsCommand = GetDocumentationPartsCommand;
|
|
4478
|
+
exports.GetDocumentationPartsRequest$ = GetDocumentationPartsRequest$;
|
|
4479
|
+
exports.GetDocumentationVersion$ = GetDocumentationVersion$;
|
|
2013
4480
|
exports.GetDocumentationVersionCommand = GetDocumentationVersionCommand;
|
|
4481
|
+
exports.GetDocumentationVersionRequest$ = GetDocumentationVersionRequest$;
|
|
4482
|
+
exports.GetDocumentationVersions$ = GetDocumentationVersions$;
|
|
2014
4483
|
exports.GetDocumentationVersionsCommand = GetDocumentationVersionsCommand;
|
|
4484
|
+
exports.GetDocumentationVersionsRequest$ = GetDocumentationVersionsRequest$;
|
|
4485
|
+
exports.GetDomainName$ = GetDomainName$;
|
|
4486
|
+
exports.GetDomainNameAccessAssociations$ = GetDomainNameAccessAssociations$;
|
|
2015
4487
|
exports.GetDomainNameAccessAssociationsCommand = GetDomainNameAccessAssociationsCommand;
|
|
4488
|
+
exports.GetDomainNameAccessAssociationsRequest$ = GetDomainNameAccessAssociationsRequest$;
|
|
2016
4489
|
exports.GetDomainNameCommand = GetDomainNameCommand;
|
|
4490
|
+
exports.GetDomainNameRequest$ = GetDomainNameRequest$;
|
|
4491
|
+
exports.GetDomainNames$ = GetDomainNames$;
|
|
2017
4492
|
exports.GetDomainNamesCommand = GetDomainNamesCommand;
|
|
4493
|
+
exports.GetDomainNamesRequest$ = GetDomainNamesRequest$;
|
|
4494
|
+
exports.GetExport$ = GetExport$;
|
|
2018
4495
|
exports.GetExportCommand = GetExportCommand;
|
|
4496
|
+
exports.GetExportRequest$ = GetExportRequest$;
|
|
4497
|
+
exports.GetGatewayResponse$ = GetGatewayResponse$;
|
|
2019
4498
|
exports.GetGatewayResponseCommand = GetGatewayResponseCommand;
|
|
4499
|
+
exports.GetGatewayResponseRequest$ = GetGatewayResponseRequest$;
|
|
4500
|
+
exports.GetGatewayResponses$ = GetGatewayResponses$;
|
|
2020
4501
|
exports.GetGatewayResponsesCommand = GetGatewayResponsesCommand;
|
|
4502
|
+
exports.GetGatewayResponsesRequest$ = GetGatewayResponsesRequest$;
|
|
4503
|
+
exports.GetIntegration$ = GetIntegration$;
|
|
2021
4504
|
exports.GetIntegrationCommand = GetIntegrationCommand;
|
|
4505
|
+
exports.GetIntegrationRequest$ = GetIntegrationRequest$;
|
|
4506
|
+
exports.GetIntegrationResponse$ = GetIntegrationResponse$;
|
|
2022
4507
|
exports.GetIntegrationResponseCommand = GetIntegrationResponseCommand;
|
|
4508
|
+
exports.GetIntegrationResponseRequest$ = GetIntegrationResponseRequest$;
|
|
4509
|
+
exports.GetMethod$ = GetMethod$;
|
|
2023
4510
|
exports.GetMethodCommand = GetMethodCommand;
|
|
4511
|
+
exports.GetMethodRequest$ = GetMethodRequest$;
|
|
4512
|
+
exports.GetMethodResponse$ = GetMethodResponse$;
|
|
2024
4513
|
exports.GetMethodResponseCommand = GetMethodResponseCommand;
|
|
4514
|
+
exports.GetMethodResponseRequest$ = GetMethodResponseRequest$;
|
|
4515
|
+
exports.GetModel$ = GetModel$;
|
|
2025
4516
|
exports.GetModelCommand = GetModelCommand;
|
|
4517
|
+
exports.GetModelRequest$ = GetModelRequest$;
|
|
4518
|
+
exports.GetModelTemplate$ = GetModelTemplate$;
|
|
2026
4519
|
exports.GetModelTemplateCommand = GetModelTemplateCommand;
|
|
4520
|
+
exports.GetModelTemplateRequest$ = GetModelTemplateRequest$;
|
|
4521
|
+
exports.GetModels$ = GetModels$;
|
|
2027
4522
|
exports.GetModelsCommand = GetModelsCommand;
|
|
4523
|
+
exports.GetModelsRequest$ = GetModelsRequest$;
|
|
4524
|
+
exports.GetRequestValidator$ = GetRequestValidator$;
|
|
2028
4525
|
exports.GetRequestValidatorCommand = GetRequestValidatorCommand;
|
|
4526
|
+
exports.GetRequestValidatorRequest$ = GetRequestValidatorRequest$;
|
|
4527
|
+
exports.GetRequestValidators$ = GetRequestValidators$;
|
|
2029
4528
|
exports.GetRequestValidatorsCommand = GetRequestValidatorsCommand;
|
|
4529
|
+
exports.GetRequestValidatorsRequest$ = GetRequestValidatorsRequest$;
|
|
4530
|
+
exports.GetResource$ = GetResource$;
|
|
2030
4531
|
exports.GetResourceCommand = GetResourceCommand;
|
|
4532
|
+
exports.GetResourceRequest$ = GetResourceRequest$;
|
|
4533
|
+
exports.GetResources$ = GetResources$;
|
|
2031
4534
|
exports.GetResourcesCommand = GetResourcesCommand;
|
|
4535
|
+
exports.GetResourcesRequest$ = GetResourcesRequest$;
|
|
4536
|
+
exports.GetRestApi$ = GetRestApi$;
|
|
2032
4537
|
exports.GetRestApiCommand = GetRestApiCommand;
|
|
4538
|
+
exports.GetRestApiRequest$ = GetRestApiRequest$;
|
|
4539
|
+
exports.GetRestApis$ = GetRestApis$;
|
|
2033
4540
|
exports.GetRestApisCommand = GetRestApisCommand;
|
|
4541
|
+
exports.GetRestApisRequest$ = GetRestApisRequest$;
|
|
4542
|
+
exports.GetSdk$ = GetSdk$;
|
|
2034
4543
|
exports.GetSdkCommand = GetSdkCommand;
|
|
4544
|
+
exports.GetSdkRequest$ = GetSdkRequest$;
|
|
4545
|
+
exports.GetSdkType$ = GetSdkType$;
|
|
2035
4546
|
exports.GetSdkTypeCommand = GetSdkTypeCommand;
|
|
4547
|
+
exports.GetSdkTypeRequest$ = GetSdkTypeRequest$;
|
|
4548
|
+
exports.GetSdkTypes$ = GetSdkTypes$;
|
|
2036
4549
|
exports.GetSdkTypesCommand = GetSdkTypesCommand;
|
|
4550
|
+
exports.GetSdkTypesRequest$ = GetSdkTypesRequest$;
|
|
4551
|
+
exports.GetStage$ = GetStage$;
|
|
2037
4552
|
exports.GetStageCommand = GetStageCommand;
|
|
4553
|
+
exports.GetStageRequest$ = GetStageRequest$;
|
|
4554
|
+
exports.GetStages$ = GetStages$;
|
|
2038
4555
|
exports.GetStagesCommand = GetStagesCommand;
|
|
4556
|
+
exports.GetStagesRequest$ = GetStagesRequest$;
|
|
4557
|
+
exports.GetTags$ = GetTags$;
|
|
2039
4558
|
exports.GetTagsCommand = GetTagsCommand;
|
|
4559
|
+
exports.GetTagsRequest$ = GetTagsRequest$;
|
|
4560
|
+
exports.GetUsage$ = GetUsage$;
|
|
2040
4561
|
exports.GetUsageCommand = GetUsageCommand;
|
|
4562
|
+
exports.GetUsagePlan$ = GetUsagePlan$;
|
|
2041
4563
|
exports.GetUsagePlanCommand = GetUsagePlanCommand;
|
|
4564
|
+
exports.GetUsagePlanKey$ = GetUsagePlanKey$;
|
|
2042
4565
|
exports.GetUsagePlanKeyCommand = GetUsagePlanKeyCommand;
|
|
4566
|
+
exports.GetUsagePlanKeyRequest$ = GetUsagePlanKeyRequest$;
|
|
4567
|
+
exports.GetUsagePlanKeys$ = GetUsagePlanKeys$;
|
|
2043
4568
|
exports.GetUsagePlanKeysCommand = GetUsagePlanKeysCommand;
|
|
4569
|
+
exports.GetUsagePlanKeysRequest$ = GetUsagePlanKeysRequest$;
|
|
4570
|
+
exports.GetUsagePlanRequest$ = GetUsagePlanRequest$;
|
|
4571
|
+
exports.GetUsagePlans$ = GetUsagePlans$;
|
|
2044
4572
|
exports.GetUsagePlansCommand = GetUsagePlansCommand;
|
|
4573
|
+
exports.GetUsagePlansRequest$ = GetUsagePlansRequest$;
|
|
4574
|
+
exports.GetUsageRequest$ = GetUsageRequest$;
|
|
4575
|
+
exports.GetVpcLink$ = GetVpcLink$;
|
|
2045
4576
|
exports.GetVpcLinkCommand = GetVpcLinkCommand;
|
|
4577
|
+
exports.GetVpcLinkRequest$ = GetVpcLinkRequest$;
|
|
4578
|
+
exports.GetVpcLinks$ = GetVpcLinks$;
|
|
2046
4579
|
exports.GetVpcLinksCommand = GetVpcLinksCommand;
|
|
4580
|
+
exports.GetVpcLinksRequest$ = GetVpcLinksRequest$;
|
|
4581
|
+
exports.ImportApiKeys$ = ImportApiKeys$;
|
|
2047
4582
|
exports.ImportApiKeysCommand = ImportApiKeysCommand;
|
|
4583
|
+
exports.ImportApiKeysRequest$ = ImportApiKeysRequest$;
|
|
4584
|
+
exports.ImportDocumentationParts$ = ImportDocumentationParts$;
|
|
2048
4585
|
exports.ImportDocumentationPartsCommand = ImportDocumentationPartsCommand;
|
|
4586
|
+
exports.ImportDocumentationPartsRequest$ = ImportDocumentationPartsRequest$;
|
|
4587
|
+
exports.ImportRestApi$ = ImportRestApi$;
|
|
2049
4588
|
exports.ImportRestApiCommand = ImportRestApiCommand;
|
|
4589
|
+
exports.ImportRestApiRequest$ = ImportRestApiRequest$;
|
|
4590
|
+
exports.Integration$ = Integration$;
|
|
4591
|
+
exports.IntegrationResponse$ = IntegrationResponse$;
|
|
2050
4592
|
exports.IntegrationType = IntegrationType;
|
|
2051
4593
|
exports.IpAddressType = IpAddressType;
|
|
4594
|
+
exports.LimitExceededException = LimitExceededException;
|
|
4595
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2052
4596
|
exports.LocationStatusType = LocationStatusType;
|
|
4597
|
+
exports.Method$ = Method$;
|
|
4598
|
+
exports.MethodResponse$ = MethodResponse$;
|
|
4599
|
+
exports.MethodSetting$ = MethodSetting$;
|
|
4600
|
+
exports.MethodSnapshot$ = MethodSnapshot$;
|
|
4601
|
+
exports.Model$ = Model$;
|
|
4602
|
+
exports.Models$ = Models$;
|
|
4603
|
+
exports.MutualTlsAuthentication$ = MutualTlsAuthentication$;
|
|
4604
|
+
exports.MutualTlsAuthenticationInput$ = MutualTlsAuthenticationInput$;
|
|
4605
|
+
exports.NotFoundException = NotFoundException;
|
|
4606
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
2053
4607
|
exports.Op = Op;
|
|
4608
|
+
exports.PatchOperation$ = PatchOperation$;
|
|
4609
|
+
exports.PutGatewayResponse$ = PutGatewayResponse$;
|
|
2054
4610
|
exports.PutGatewayResponseCommand = PutGatewayResponseCommand;
|
|
4611
|
+
exports.PutGatewayResponseRequest$ = PutGatewayResponseRequest$;
|
|
4612
|
+
exports.PutIntegration$ = PutIntegration$;
|
|
2055
4613
|
exports.PutIntegrationCommand = PutIntegrationCommand;
|
|
4614
|
+
exports.PutIntegrationRequest$ = PutIntegrationRequest$;
|
|
4615
|
+
exports.PutIntegrationResponse$ = PutIntegrationResponse$;
|
|
2056
4616
|
exports.PutIntegrationResponseCommand = PutIntegrationResponseCommand;
|
|
4617
|
+
exports.PutIntegrationResponseRequest$ = PutIntegrationResponseRequest$;
|
|
4618
|
+
exports.PutMethod$ = PutMethod$;
|
|
2057
4619
|
exports.PutMethodCommand = PutMethodCommand;
|
|
4620
|
+
exports.PutMethodRequest$ = PutMethodRequest$;
|
|
4621
|
+
exports.PutMethodResponse$ = PutMethodResponse$;
|
|
2058
4622
|
exports.PutMethodResponseCommand = PutMethodResponseCommand;
|
|
4623
|
+
exports.PutMethodResponseRequest$ = PutMethodResponseRequest$;
|
|
2059
4624
|
exports.PutMode = PutMode;
|
|
4625
|
+
exports.PutRestApi$ = PutRestApi$;
|
|
2060
4626
|
exports.PutRestApiCommand = PutRestApiCommand;
|
|
4627
|
+
exports.PutRestApiRequest$ = PutRestApiRequest$;
|
|
2061
4628
|
exports.QuotaPeriodType = QuotaPeriodType;
|
|
4629
|
+
exports.QuotaSettings$ = QuotaSettings$;
|
|
4630
|
+
exports.RejectDomainNameAccessAssociation$ = RejectDomainNameAccessAssociation$;
|
|
2062
4631
|
exports.RejectDomainNameAccessAssociationCommand = RejectDomainNameAccessAssociationCommand;
|
|
4632
|
+
exports.RejectDomainNameAccessAssociationRequest$ = RejectDomainNameAccessAssociationRequest$;
|
|
4633
|
+
exports.RequestValidator$ = RequestValidator$;
|
|
4634
|
+
exports.RequestValidators$ = RequestValidators$;
|
|
4635
|
+
exports.Resource$ = Resource$;
|
|
2063
4636
|
exports.ResourceOwner = ResourceOwner;
|
|
4637
|
+
exports.Resources$ = Resources$;
|
|
2064
4638
|
exports.ResponseTransferMode = ResponseTransferMode;
|
|
4639
|
+
exports.RestApi$ = RestApi$;
|
|
4640
|
+
exports.RestApis$ = RestApis$;
|
|
2065
4641
|
exports.RoutingMode = RoutingMode;
|
|
4642
|
+
exports.SdkConfigurationProperty$ = SdkConfigurationProperty$;
|
|
4643
|
+
exports.SdkResponse$ = SdkResponse$;
|
|
4644
|
+
exports.SdkType$ = SdkType$;
|
|
4645
|
+
exports.SdkTypes$ = SdkTypes$;
|
|
2066
4646
|
exports.SecurityPolicy = SecurityPolicy;
|
|
4647
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4648
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4649
|
+
exports.Stage$ = Stage$;
|
|
4650
|
+
exports.StageKey$ = StageKey$;
|
|
4651
|
+
exports.Stages$ = Stages$;
|
|
4652
|
+
exports.TagResource$ = TagResource$;
|
|
2067
4653
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4654
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4655
|
+
exports.Tags$ = Tags$;
|
|
4656
|
+
exports.Template$ = Template$;
|
|
4657
|
+
exports.TestInvokeAuthorizer$ = TestInvokeAuthorizer$;
|
|
2068
4658
|
exports.TestInvokeAuthorizerCommand = TestInvokeAuthorizerCommand;
|
|
4659
|
+
exports.TestInvokeAuthorizerRequest$ = TestInvokeAuthorizerRequest$;
|
|
4660
|
+
exports.TestInvokeAuthorizerResponse$ = TestInvokeAuthorizerResponse$;
|
|
4661
|
+
exports.TestInvokeMethod$ = TestInvokeMethod$;
|
|
2069
4662
|
exports.TestInvokeMethodCommand = TestInvokeMethodCommand;
|
|
4663
|
+
exports.TestInvokeMethodRequest$ = TestInvokeMethodRequest$;
|
|
4664
|
+
exports.TestInvokeMethodResponse$ = TestInvokeMethodResponse$;
|
|
4665
|
+
exports.ThrottleSettings$ = ThrottleSettings$;
|
|
4666
|
+
exports.TlsConfig$ = TlsConfig$;
|
|
4667
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
4668
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
2070
4669
|
exports.UnauthorizedCacheControlHeaderStrategy = UnauthorizedCacheControlHeaderStrategy;
|
|
4670
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
4671
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
4672
|
+
exports.UntagResource$ = UntagResource$;
|
|
2071
4673
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4674
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4675
|
+
exports.UpdateAccount$ = UpdateAccount$;
|
|
2072
4676
|
exports.UpdateAccountCommand = UpdateAccountCommand;
|
|
4677
|
+
exports.UpdateAccountRequest$ = UpdateAccountRequest$;
|
|
4678
|
+
exports.UpdateApiKey$ = UpdateApiKey$;
|
|
2073
4679
|
exports.UpdateApiKeyCommand = UpdateApiKeyCommand;
|
|
4680
|
+
exports.UpdateApiKeyRequest$ = UpdateApiKeyRequest$;
|
|
4681
|
+
exports.UpdateAuthorizer$ = UpdateAuthorizer$;
|
|
2074
4682
|
exports.UpdateAuthorizerCommand = UpdateAuthorizerCommand;
|
|
4683
|
+
exports.UpdateAuthorizerRequest$ = UpdateAuthorizerRequest$;
|
|
4684
|
+
exports.UpdateBasePathMapping$ = UpdateBasePathMapping$;
|
|
2075
4685
|
exports.UpdateBasePathMappingCommand = UpdateBasePathMappingCommand;
|
|
4686
|
+
exports.UpdateBasePathMappingRequest$ = UpdateBasePathMappingRequest$;
|
|
4687
|
+
exports.UpdateClientCertificate$ = UpdateClientCertificate$;
|
|
2076
4688
|
exports.UpdateClientCertificateCommand = UpdateClientCertificateCommand;
|
|
4689
|
+
exports.UpdateClientCertificateRequest$ = UpdateClientCertificateRequest$;
|
|
4690
|
+
exports.UpdateDeployment$ = UpdateDeployment$;
|
|
2077
4691
|
exports.UpdateDeploymentCommand = UpdateDeploymentCommand;
|
|
4692
|
+
exports.UpdateDeploymentRequest$ = UpdateDeploymentRequest$;
|
|
4693
|
+
exports.UpdateDocumentationPart$ = UpdateDocumentationPart$;
|
|
2078
4694
|
exports.UpdateDocumentationPartCommand = UpdateDocumentationPartCommand;
|
|
4695
|
+
exports.UpdateDocumentationPartRequest$ = UpdateDocumentationPartRequest$;
|
|
4696
|
+
exports.UpdateDocumentationVersion$ = UpdateDocumentationVersion$;
|
|
2079
4697
|
exports.UpdateDocumentationVersionCommand = UpdateDocumentationVersionCommand;
|
|
4698
|
+
exports.UpdateDocumentationVersionRequest$ = UpdateDocumentationVersionRequest$;
|
|
4699
|
+
exports.UpdateDomainName$ = UpdateDomainName$;
|
|
2080
4700
|
exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
|
|
4701
|
+
exports.UpdateDomainNameRequest$ = UpdateDomainNameRequest$;
|
|
4702
|
+
exports.UpdateGatewayResponse$ = UpdateGatewayResponse$;
|
|
2081
4703
|
exports.UpdateGatewayResponseCommand = UpdateGatewayResponseCommand;
|
|
4704
|
+
exports.UpdateGatewayResponseRequest$ = UpdateGatewayResponseRequest$;
|
|
4705
|
+
exports.UpdateIntegration$ = UpdateIntegration$;
|
|
2082
4706
|
exports.UpdateIntegrationCommand = UpdateIntegrationCommand;
|
|
4707
|
+
exports.UpdateIntegrationRequest$ = UpdateIntegrationRequest$;
|
|
4708
|
+
exports.UpdateIntegrationResponse$ = UpdateIntegrationResponse$;
|
|
2083
4709
|
exports.UpdateIntegrationResponseCommand = UpdateIntegrationResponseCommand;
|
|
4710
|
+
exports.UpdateIntegrationResponseRequest$ = UpdateIntegrationResponseRequest$;
|
|
4711
|
+
exports.UpdateMethod$ = UpdateMethod$;
|
|
2084
4712
|
exports.UpdateMethodCommand = UpdateMethodCommand;
|
|
4713
|
+
exports.UpdateMethodRequest$ = UpdateMethodRequest$;
|
|
4714
|
+
exports.UpdateMethodResponse$ = UpdateMethodResponse$;
|
|
2085
4715
|
exports.UpdateMethodResponseCommand = UpdateMethodResponseCommand;
|
|
4716
|
+
exports.UpdateMethodResponseRequest$ = UpdateMethodResponseRequest$;
|
|
4717
|
+
exports.UpdateModel$ = UpdateModel$;
|
|
2086
4718
|
exports.UpdateModelCommand = UpdateModelCommand;
|
|
4719
|
+
exports.UpdateModelRequest$ = UpdateModelRequest$;
|
|
4720
|
+
exports.UpdateRequestValidator$ = UpdateRequestValidator$;
|
|
2087
4721
|
exports.UpdateRequestValidatorCommand = UpdateRequestValidatorCommand;
|
|
4722
|
+
exports.UpdateRequestValidatorRequest$ = UpdateRequestValidatorRequest$;
|
|
4723
|
+
exports.UpdateResource$ = UpdateResource$;
|
|
2088
4724
|
exports.UpdateResourceCommand = UpdateResourceCommand;
|
|
4725
|
+
exports.UpdateResourceRequest$ = UpdateResourceRequest$;
|
|
4726
|
+
exports.UpdateRestApi$ = UpdateRestApi$;
|
|
2089
4727
|
exports.UpdateRestApiCommand = UpdateRestApiCommand;
|
|
4728
|
+
exports.UpdateRestApiRequest$ = UpdateRestApiRequest$;
|
|
4729
|
+
exports.UpdateStage$ = UpdateStage$;
|
|
2090
4730
|
exports.UpdateStageCommand = UpdateStageCommand;
|
|
4731
|
+
exports.UpdateStageRequest$ = UpdateStageRequest$;
|
|
4732
|
+
exports.UpdateUsage$ = UpdateUsage$;
|
|
2091
4733
|
exports.UpdateUsageCommand = UpdateUsageCommand;
|
|
4734
|
+
exports.UpdateUsagePlan$ = UpdateUsagePlan$;
|
|
2092
4735
|
exports.UpdateUsagePlanCommand = UpdateUsagePlanCommand;
|
|
4736
|
+
exports.UpdateUsagePlanRequest$ = UpdateUsagePlanRequest$;
|
|
4737
|
+
exports.UpdateUsageRequest$ = UpdateUsageRequest$;
|
|
4738
|
+
exports.UpdateVpcLink$ = UpdateVpcLink$;
|
|
2093
4739
|
exports.UpdateVpcLinkCommand = UpdateVpcLinkCommand;
|
|
4740
|
+
exports.UpdateVpcLinkRequest$ = UpdateVpcLinkRequest$;
|
|
4741
|
+
exports.Usage$ = Usage$;
|
|
4742
|
+
exports.UsagePlan$ = UsagePlan$;
|
|
4743
|
+
exports.UsagePlanKey$ = UsagePlanKey$;
|
|
4744
|
+
exports.UsagePlanKeys$ = UsagePlanKeys$;
|
|
4745
|
+
exports.UsagePlans$ = UsagePlans$;
|
|
4746
|
+
exports.VpcLink$ = VpcLink$;
|
|
2094
4747
|
exports.VpcLinkStatus = VpcLinkStatus;
|
|
4748
|
+
exports.VpcLinks$ = VpcLinks$;
|
|
4749
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
2095
4750
|
exports.paginateGetApiKeys = paginateGetApiKeys;
|
|
2096
4751
|
exports.paginateGetBasePathMappings = paginateGetBasePathMappings;
|
|
2097
4752
|
exports.paginateGetClientCertificates = paginateGetClientCertificates;
|