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