@aws-sdk/client-apigatewayv2 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultApiGatewayV2HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateApi$, CreateApiMapping$, CreateAuthorizer$, CreateDeployment$, CreateDomainName$, CreateIntegration$, CreateIntegrationResponse$, CreateModel$, CreatePortal$, CreatePortalProduct$, CreateProductPage$, CreateProductRestEndpointPage$, CreateRoute$, CreateRouteResponse$, CreateRoutingRule$, CreateStage$, CreateVpcLink$, DeleteAccessLogSettings$, DeleteApi$, DeleteApiMapping$, DeleteAuthorizer$, DeleteCorsConfiguration$, DeleteDeployment$, DeleteDomainName$, DeleteIntegration$, DeleteIntegrationResponse$, DeleteModel$, DeletePortal$, DeletePortalProduct$, DeletePortalProductSharingPolicy$, DeleteProductPage$, DeleteProductRestEndpointPage$, DeleteRoute$, DeleteRouteRequestParameter$, DeleteRouteResponse$, DeleteRouteSettings$, DeleteRoutingRule$, DeleteStage$, DeleteVpcLink$, DisablePortal$, ExportApi$, GetApi$, GetApiMapping$, GetApiMappings$, GetApis$, GetAuthorizer$, GetAuthorizers$, GetDeployment$, GetDeployments$, GetDomainName$, GetDomainNames$, GetIntegration$, GetIntegrationResponse$, GetIntegrationResponses$, GetIntegrations$, GetModel$, GetModels$, GetModelTemplate$, GetPortal$, GetPortalProduct$, GetPortalProductSharingPolicy$, GetProductPage$, GetProductRestEndpointPage$, GetRoute$, GetRouteResponse$, GetRouteResponses$, GetRoutes$, GetRoutingRule$, GetStage$, GetStages$, GetTags$, GetVpcLink$, GetVpcLinks$, ImportApi$, ListPortalProducts$, ListPortals$, ListProductPages$, ListProductRestEndpointPages$, ListRoutingRules$, PreviewPortal$, PublishPortal$, PutPortalProductSharingPolicy$, PutRoutingRule$, ReimportApi$, ResetAuthorizersCache$, TagResource$, UntagResource$, UpdateApi$, UpdateApiMapping$, UpdateAuthorizer$, UpdateDeployment$, UpdateDomainName$, UpdateIntegration$, UpdateIntegrationResponse$, UpdateModel$, UpdatePortal$, UpdatePortalProduct$, UpdateProductPage$, UpdateProductRestEndpointPage$, UpdateRoute$, UpdateRouteResponse$, UpdateStage$, UpdateVpcLink$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ApiGatewayV2ServiceException } = require("./models/ApiGatewayV2ServiceException");
18
- exports.ApiGatewayV2ServiceException = ApiGatewayV2ServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultApiGatewayV2HttpAuthSchemeParametersProvider = 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 defaultApiGatewayV2HttpAuthSchemeProvider = (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
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,2622 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.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 ApiGatewayV2ServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, ApiGatewayV2ServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends ApiGatewayV2ServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "AccessDeniedException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
151
+ this.Message = opts.Message;
152
+ }
153
+ }
154
+ class BadRequestException extends ApiGatewayV2ServiceException {
155
+ name = "BadRequestException";
156
+ $fault = "client";
157
+ Message;
158
+ constructor(opts) {
159
+ super({
160
+ name: "BadRequestException",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ Object.setPrototypeOf(this, BadRequestException.prototype);
165
+ this.Message = opts.Message;
166
+ }
167
+ }
168
+ class ConflictException extends ApiGatewayV2ServiceException {
169
+ name = "ConflictException";
170
+ $fault = "client";
171
+ Message;
172
+ constructor(opts) {
173
+ super({
174
+ name: "ConflictException",
175
+ $fault: "client",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, ConflictException.prototype);
179
+ this.Message = opts.Message;
180
+ }
181
+ }
182
+ class NotFoundException extends ApiGatewayV2ServiceException {
183
+ name = "NotFoundException";
184
+ $fault = "client";
185
+ Message;
186
+ ResourceType;
187
+ constructor(opts) {
188
+ super({
189
+ name: "NotFoundException",
190
+ $fault: "client",
191
+ ...opts,
192
+ });
193
+ Object.setPrototypeOf(this, NotFoundException.prototype);
194
+ this.Message = opts.Message;
195
+ this.ResourceType = opts.ResourceType;
196
+ }
197
+ }
198
+ class TooManyRequestsException extends ApiGatewayV2ServiceException {
199
+ name = "TooManyRequestsException";
200
+ $fault = "client";
201
+ LimitType;
202
+ Message;
203
+ constructor(opts) {
204
+ super({
205
+ name: "TooManyRequestsException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
210
+ this.LimitType = opts.LimitType;
211
+ this.Message = opts.Message;
212
+ }
213
+ }
214
+
215
+ const _A = "Api";
216
+ const _AC = "AllowCredentials";
217
+ const _ACA = "AuthorizerCredentialsArn";
218
+ const _ACI = "AppClientId";
219
+ const _ACMM = "ACMManaged";
220
+ const _ACc = "AccentColor";
221
+ const _AD = "AutoDeployed";
222
+ const _ADE = "AccessDeniedException";
223
+ const _ADu = "AutoDeploy";
224
+ const _AE = "ApiEndpoint";
225
+ const _AGDN = "ApiGatewayDomainName";
226
+ const _AGM = "ApiGatewayManaged";
227
+ const _AH = "AllowHeaders";
228
+ const _AI = "ApiId";
229
+ const _AIu = "AuthorizerId";
230
+ const _AKR = "ApiKeyRequired";
231
+ const _AKSE = "ApiKeySelectionExpression";
232
+ const _ALS = "AccessLogSettings";
233
+ const _AM = "ApiMapping";
234
+ const _AMI = "ApiMappingId";
235
+ const _AMK = "ApiMappingKey";
236
+ const _AMSE = "ApiMappingSelectionExpression";
237
+ const _AMc = "AcmManaged";
238
+ const _AMl = "AllowMethods";
239
+ const _AO = "AllowOrigins";
240
+ const _AOn = "AnyOf";
241
+ const _APFV = "AuthorizerPayloadFormatVersion";
242
+ const _ARTIS = "AuthorizerResultTtlInSeconds";
243
+ const _AS = "AuthorizationScopes";
244
+ const _AT = "AuthorizerType";
245
+ const _ATu = "AuthorizationType";
246
+ const _AU = "AuthorizerUri";
247
+ const _Ac = "Actions";
248
+ const _Au = "Authorization";
249
+ const _Aud = "Audience";
250
+ const _Aut = "Authorizer";
251
+ const _B = "Body";
252
+ const _BC = "BackgroundColor";
253
+ const _BRE = "BadRequestException";
254
+ const _Ba = "Basepath";
255
+ const _C = "Cors";
256
+ const _CA = "CertificateArn";
257
+ const _CAM = "CreateApiMapping";
258
+ const _CAMR = "CreateApiMappingRequest";
259
+ const _CAMRr = "CreateApiMappingResponse";
260
+ const _CAR = "CreateApiRequest";
261
+ const _CARr = "CreateApiResponse";
262
+ const _CARre = "CreateAuthorizerRequest";
263
+ const _CARrea = "CreateAuthorizerResponse";
264
+ const _CAr = "CredentialsArn";
265
+ const _CAre = "CreateApi";
266
+ const _CArea = "CreateAuthorizer";
267
+ const _CC = "CorsConfiguration";
268
+ const _CCI = "ClientCertificateId";
269
+ const _CCo = "CognitoConfig";
270
+ const _CCu = "CustomColors";
271
+ const _CD = "CreatedDate";
272
+ const _CDN = "CreateDomainName";
273
+ const _CDNR = "CreateDomainNameRequest";
274
+ const _CDNRr = "CreateDomainNameResponse";
275
+ const _CDR = "CreateDeploymentRequest";
276
+ const _CDRr = "CreateDeploymentResponse";
277
+ const _CDr = "CreateDeployment";
278
+ const _CE = "ConflictException";
279
+ const _CHS = "ContentHandlingStrategy";
280
+ const _CI = "ConnectionId";
281
+ const _CIR = "CreateIntegrationRequest";
282
+ const _CIRR = "CreateIntegrationResponseRequest";
283
+ const _CIRRr = "CreateIntegrationResponseResponse";
284
+ const _CIRr = "CreateIntegrationResult";
285
+ const _CIRre = "CreateIntegrationResponse";
286
+ const _CIr = "CreateIntegration";
287
+ const _CM = "CreateModel";
288
+ const _CMR = "CreateModelRequest";
289
+ const _CMRr = "CreateModelResponse";
290
+ const _CN = "CertificateName";
291
+ const _CP = "CreatePortal";
292
+ const _CPP = "CreatePortalProduct";
293
+ const _CPPR = "CreatePortalProductRequest";
294
+ const _CPPRr = "CreatePortalProductResponse";
295
+ const _CPPRre = "CreateProductPageRequest";
296
+ const _CPPRrea = "CreateProductPageResponse";
297
+ const _CPPr = "CreateProductPage";
298
+ const _CPR = "CreatePortalRequest";
299
+ const _CPREP = "CreateProductRestEndpointPage";
300
+ const _CPREPR = "CreateProductRestEndpointPageRequest";
301
+ const _CPREPRr = "CreateProductRestEndpointPageResponse";
302
+ const _CPRr = "CreatePortalResponse";
303
+ const _CR = "CreateRoute";
304
+ const _CRR = "CreateRouteRequest";
305
+ const _CRRR = "CreateRouteResponseRequest";
306
+ const _CRRRr = "CreateRouteResponseResponse";
307
+ const _CRRRre = "CreateRoutingRuleRequest";
308
+ const _CRRRrea = "CreateRoutingRuleResponse";
309
+ const _CRRr = "CreateRouteResult";
310
+ const _CRRre = "CreateRouteResponse";
311
+ const _CRRrea = "CreateRoutingRule";
312
+ const _CS = "CreateStage";
313
+ const _CSR = "CreateStageRequest";
314
+ const _CSRr = "CreateStageResponse";
315
+ const _CT = "ConnectionType";
316
+ const _CTo = "ContentType";
317
+ const _CUD = "CertificateUploadDate";
318
+ const _CVL = "CreateVpcLink";
319
+ const _CVLR = "CreateVpcLinkRequest";
320
+ const _CVLRr = "CreateVpcLinkResponse";
321
+ const _Co = "Conditions";
322
+ const _Con = "Contents";
323
+ const _D = "Description";
324
+ const _DA = "DestinationArn";
325
+ const _DALS = "DeleteAccessLogSettings";
326
+ const _DALSR = "DeleteAccessLogSettingsRequest";
327
+ const _DAM = "DeleteApiMapping";
328
+ const _DAMR = "DeleteApiMappingRequest";
329
+ const _DAR = "DeleteApiRequest";
330
+ const _DARe = "DeleteAuthorizerRequest";
331
+ const _DAe = "DeleteApi";
332
+ const _DAel = "DeleteAuthorizer";
333
+ const _DC = "DisplayContent";
334
+ const _DCC = "DeleteCorsConfiguration";
335
+ const _DCCR = "DeleteCorsConfigurationRequest";
336
+ const _DCO = "DisplayContentOverrides";
337
+ const _DD = "DeleteDeployment";
338
+ const _DDN = "DeleteDomainName";
339
+ const _DDNR = "DeleteDomainNameRequest";
340
+ const _DDR = "DeleteDeploymentRequest";
341
+ const _DEAE = "DisableExecuteApiEndpoint";
342
+ const _DI = "DeploymentId";
343
+ const _DIR = "DeleteIntegrationRequest";
344
+ const _DIRR = "DeleteIntegrationResponseRequest";
345
+ const _DIRe = "DeleteIntegrationResponse";
346
+ const _DIe = "DeleteIntegration";
347
+ const _DM = "DeleteModel";
348
+ const _DME = "DetailedMetricsEnabled";
349
+ const _DMR = "DeleteModelRequest";
350
+ const _DN = "DomainName";
351
+ const _DNA = "DomainNameArn";
352
+ const _DNC = "DomainNameConfigurations";
353
+ const _DNCo = "DomainNameConfiguration";
354
+ const _DNI = "DomainNameId";
355
+ const _DNS = "DomainNameStatus";
356
+ const _DNSM = "DomainNameStatusMessage";
357
+ const _DNi = "DisplayName";
358
+ const _DO = "DisplayOrder";
359
+ const _DP = "DeletePortal";
360
+ const _DPP = "DeletePortalProduct";
361
+ const _DPPR = "DeletePortalProductRequest";
362
+ const _DPPRe = "DeleteProductPageRequest";
363
+ const _DPPSP = "DeletePortalProductSharingPolicy";
364
+ const _DPPSPR = "DeletePortalProductSharingPolicyRequest";
365
+ const _DPPe = "DeleteProductPage";
366
+ const _DPR = "DeletePortalRequest";
367
+ const _DPREP = "DeleteProductRestEndpointPage";
368
+ const _DPREPR = "DeleteProductRestEndpointPageRequest";
369
+ const _DPRi = "DisablePortalRequest";
370
+ const _DPi = "DisablePortal";
371
+ const _DR = "DeleteRoute";
372
+ const _DRR = "DeleteRouteRequest";
373
+ const _DRRP = "DeleteRouteRequestParameter";
374
+ const _DRRPR = "DeleteRouteRequestParameterRequest";
375
+ const _DRRR = "DeleteRouteResponseRequest";
376
+ const _DRRRe = "DeleteRoutingRuleRequest";
377
+ const _DRRe = "DeleteRouteResponse";
378
+ const _DRRel = "DeleteRoutingRule";
379
+ const _DRS = "DefaultRouteSettings";
380
+ const _DRSR = "DeleteRouteSettingsRequest";
381
+ const _DRSe = "DeleteRouteSettings";
382
+ const _DS = "DeploymentStatus";
383
+ const _DSM = "DeploymentStatusMessage";
384
+ const _DSR = "DeleteStageRequest";
385
+ const _DSV = "DisableSchemaValidation";
386
+ const _DSe = "DeleteStage";
387
+ const _DTE = "DataTraceEnabled";
388
+ const _DVL = "DeleteVpcLink";
389
+ const _DVLR = "DeleteVpcLinkRequest";
390
+ const _DVLRe = "DeleteVpcLinkResponse";
391
+ const _De = "Deployment";
392
+ const _E = "Endpoint";
393
+ const _EA = "ExportApi";
394
+ const _EAR = "ExportApiRequest";
395
+ const _EARx = "ExportApiResponse";
396
+ const _EC = "EndpointConfiguration";
397
+ const _ECR = "EndpointConfigurationRequest";
398
+ const _ECRn = "EndpointConfigurationResponse";
399
+ const _EDC = "EndpointDisplayContent";
400
+ const _EDCR = "EndpointDisplayContentResponse";
401
+ const _EH = "ExposeHeaders";
402
+ const _ESR = "EnableSimpleResponses";
403
+ const _ET = "EndpointType";
404
+ const _EV = "ExportVersion";
405
+ const _EVC = "ErrorValidationColor";
406
+ const _Ex = "Exception";
407
+ const _F = "Format";
408
+ const _FOW = "FailOnWarnings";
409
+ const _GA = "GetApi";
410
+ const _GAM = "GetApiMapping";
411
+ const _GAMR = "GetApiMappingRequest";
412
+ const _GAMRe = "GetApiMappingResponse";
413
+ const _GAMRet = "GetApiMappingsRequest";
414
+ const _GAMRetp = "GetApiMappingsResponse";
415
+ const _GAMe = "GetApiMappings";
416
+ const _GAR = "GetApiRequest";
417
+ const _GARe = "GetApiResponse";
418
+ const _GARet = "GetApisRequest";
419
+ const _GARetp = "GetApisResponse";
420
+ const _GARetu = "GetAuthorizerRequest";
421
+ const _GARetut = "GetAuthorizerResponse";
422
+ const _GARetuth = "GetAuthorizersRequest";
423
+ const _GARetutho = "GetAuthorizersResponse";
424
+ const _GAe = "GetApis";
425
+ const _GAet = "GetAuthorizer";
426
+ const _GAetu = "GetAuthorizers";
427
+ const _GD = "GetDeployment";
428
+ const _GDN = "GetDomainName";
429
+ const _GDNR = "GetDomainNameRequest";
430
+ const _GDNRe = "GetDomainNameResponse";
431
+ const _GDNRet = "GetDomainNamesRequest";
432
+ const _GDNReto = "GetDomainNamesResponse";
433
+ const _GDNe = "GetDomainNames";
434
+ const _GDR = "GetDeploymentRequest";
435
+ const _GDRe = "GetDeploymentResponse";
436
+ const _GDRet = "GetDeploymentsRequest";
437
+ const _GDRete = "GetDeploymentsResponse";
438
+ const _GDe = "GetDeployments";
439
+ const _GI = "GetIntegration";
440
+ const _GIR = "GetIntegrationRequest";
441
+ const _GIRR = "GetIntegrationResponseRequest";
442
+ const _GIRRe = "GetIntegrationResponseResponse";
443
+ const _GIRRet = "GetIntegrationResponsesRequest";
444
+ const _GIRRetn = "GetIntegrationResponsesResponse";
445
+ const _GIRe = "GetIntegrationResult";
446
+ const _GIRet = "GetIntegrationsRequest";
447
+ const _GIRetn = "GetIntegrationsResponse";
448
+ const _GIRetnt = "GetIntegrationResponse";
449
+ const _GIRetnte = "GetIntegrationResponses";
450
+ const _GIe = "GetIntegrations";
451
+ const _GM = "GetModel";
452
+ const _GMR = "GetModelRequest";
453
+ const _GMRe = "GetModelResponse";
454
+ const _GMRet = "GetModelsRequest";
455
+ const _GMReto = "GetModelsResponse";
456
+ const _GMT = "GetModelTemplate";
457
+ const _GMTR = "GetModelTemplateRequest";
458
+ const _GMTRe = "GetModelTemplateResponse";
459
+ const _GMe = "GetModels";
460
+ const _GP = "GetPortal";
461
+ const _GPP = "GetPortalProduct";
462
+ const _GPPR = "GetPortalProductRequest";
463
+ const _GPPRe = "GetPortalProductResponse";
464
+ const _GPPRet = "GetProductPageRequest";
465
+ const _GPPRetr = "GetProductPageResponse";
466
+ const _GPPSP = "GetPortalProductSharingPolicy";
467
+ const _GPPSPR = "GetPortalProductSharingPolicyRequest";
468
+ const _GPPSPRe = "GetPortalProductSharingPolicyResponse";
469
+ const _GPPe = "GetProductPage";
470
+ const _GPR = "GetPortalRequest";
471
+ const _GPREP = "GetProductRestEndpointPage";
472
+ const _GPREPR = "GetProductRestEndpointPageRequest";
473
+ const _GPREPRe = "GetProductRestEndpointPageResponse";
474
+ const _GPRe = "GetPortalResponse";
475
+ const _GR = "GetRoute";
476
+ const _GRR = "GetRouteRequest";
477
+ const _GRRR = "GetRouteResponseRequest";
478
+ const _GRRRe = "GetRouteResponseResponse";
479
+ const _GRRRet = "GetRouteResponsesRequest";
480
+ const _GRRReto = "GetRouteResponsesResponse";
481
+ const _GRRRetou = "GetRoutingRuleRequest";
482
+ const _GRRRetout = "GetRoutingRuleResponse";
483
+ const _GRRe = "GetRouteResult";
484
+ const _GRRet = "GetRoutesRequest";
485
+ const _GRReto = "GetRoutesResponse";
486
+ const _GRRetou = "GetRouteResponse";
487
+ const _GRRetout = "GetRouteResponses";
488
+ const _GRRetouti = "GetRoutingRule";
489
+ const _GRe = "GetRoutes";
490
+ const _GS = "GetStage";
491
+ const _GSR = "GetStageRequest";
492
+ const _GSRe = "GetStageResponse";
493
+ const _GSRet = "GetStagesRequest";
494
+ const _GSRett = "GetStagesResponse";
495
+ const _GSe = "GetStages";
496
+ const _GT = "GetTags";
497
+ const _GTR = "GetTagsRequest";
498
+ const _GTRe = "GetTagsResponse";
499
+ const _GVL = "GetVpcLink";
500
+ const _GVLR = "GetVpcLinkRequest";
501
+ const _GVLRe = "GetVpcLinkResponse";
502
+ const _GVLRet = "GetVpcLinksRequest";
503
+ const _GVLRetp = "GetVpcLinksResponse";
504
+ const _GVLe = "GetVpcLinks";
505
+ const _H = "Header";
506
+ const _HC = "HeaderColor";
507
+ const _HZI = "HostedZoneId";
508
+ const _I = "Items";
509
+ const _IA = "InvokeApi";
510
+ const _IAR = "ImportApiRequest";
511
+ const _IARm = "ImportApiResponse";
512
+ const _IAT = "IpAddressType";
513
+ const _IAm = "ImportApi";
514
+ const _IE = "IncludeExtensions";
515
+ const _II = "ImportInfo";
516
+ const _IIn = "IntegrationId";
517
+ const _IM = "IntegrationMethod";
518
+ const _IP = "IdentifierParts";
519
+ const _IPPA = "IncludedPortalProductArns";
520
+ const _IR = "IntegrationResponse";
521
+ const _IRDC = "IncludeRawDisplayContent";
522
+ const _IRI = "IntegrationResponseId";
523
+ const _IRK = "IntegrationResponseKey";
524
+ const _IRSE = "IntegrationResponseSelectionExpression";
525
+ const _IS = "IdentitySource";
526
+ const _ISn = "IntegrationSubtype";
527
+ const _IT = "IntegrationType";
528
+ const _IU = "IntegrationUri";
529
+ const _IVE = "IdentityValidationExpression";
530
+ const _In = "Integration";
531
+ const _Is = "Issuer";
532
+ const _JC = "JwtConfiguration";
533
+ const _JWTC = "JWTConfiguration";
534
+ const _LDSM = "LastDeploymentStatusMessage";
535
+ const _LL = "LoggingLevel";
536
+ const _LLU = "LogoLastUploaded";
537
+ const _LM = "LastModified";
538
+ const _LP = "LastPublished";
539
+ const _LPD = "LastPublishedDescription";
540
+ const _LPP = "ListPortalProducts";
541
+ const _LPPR = "ListPortalProductsRequest";
542
+ const _LPPRi = "ListPortalProductsResponse";
543
+ const _LPPRis = "ListProductPagesRequest";
544
+ const _LPPRist = "ListProductPagesResponse";
545
+ const _LPPi = "ListProductPages";
546
+ const _LPR = "ListPortalsRequest";
547
+ const _LPREP = "ListProductRestEndpointPages";
548
+ const _LPREPR = "ListProductRestEndpointPagesRequest";
549
+ const _LPREPRi = "ListProductRestEndpointPagesResponse";
550
+ const _LPRi = "ListPortalsResponse";
551
+ const _LPi = "ListPortals";
552
+ const _LRR = "ListRoutingRules";
553
+ const _LRRR = "ListRoutingRulesRequest";
554
+ const _LRRRi = "ListRoutingRulesResponse";
555
+ const _LT = "LimitType";
556
+ const _LU = "LogoUri";
557
+ const _LUD = "LastUpdatedDate";
558
+ const _M = "Message";
559
+ const _MA = "MaxAge";
560
+ const _MBP = "MatchBasePaths";
561
+ const _MH = "MatchHeaders";
562
+ const _MI = "ModelId";
563
+ const _MR = "MaxResults";
564
+ const _MSE = "ModelSelectionExpression";
565
+ const _MTA = "MutualTlsAuthentication";
566
+ const _MTAI = "MutualTlsAuthenticationInput";
567
+ const _Me = "Method";
568
+ const _Mo = "Model";
569
+ const _N = "Name";
570
+ const _NC = "NavigationColor";
571
+ const _NFE = "NotFoundException";
572
+ const _NT = "NextToken";
573
+ const _No = "None";
574
+ const _O = "Overrides";
575
+ const _ON = "OperationName";
576
+ const _OPA = "OverviewPageArn";
577
+ const _OT = "OutputType";
578
+ const _OVCA = "OwnershipVerificationCertificateArn";
579
+ const _P = "Priority";
580
+ const _PA = "PortalArn";
581
+ const _PB = "PassthroughBehavior";
582
+ const _PC = "PortalContent";
583
+ const _PCa = "ParameterConstraints";
584
+ const _PD = "PolicyDocument";
585
+ const _PDDN = "PortalDefaultDomainName";
586
+ const _PDHZI = "PortalDomainHostedZoneId";
587
+ const _PFV = "PayloadFormatVersion";
588
+ const _PI = "PortalId";
589
+ const _PP = "PreviewPortal";
590
+ const _PPA = "PortalProductArn";
591
+ const _PPAr = "ProductPageArn";
592
+ const _PPAro = "ProductPageArns";
593
+ const _PPI = "PortalProductId";
594
+ const _PPIr = "ProductPageId";
595
+ const _PPPSP = "PutPortalProductSharingPolicy";
596
+ const _PPPSPR = "PutPortalProductSharingPolicyRequest";
597
+ const _PPPSPRu = "PutPortalProductSharingPolicyResponse";
598
+ const _PPR = "PreviewPortalRequest";
599
+ const _PPRr = "PreviewPortalResponse";
600
+ const _PPRu = "PublishPortalRequest";
601
+ const _PPRub = "PublishPortalResponse";
602
+ const _PPS = "PortalProductSummary";
603
+ const _PPSNB = "ProductPageSummaryNoBody";
604
+ const _PPu = "PublishPortal";
605
+ const _PREPA = "ProductRestEndpointPageArn";
606
+ const _PREPAr = "ProductRestEndpointPageArns";
607
+ const _PREPI = "ProductRestEndpointPageId";
608
+ const _PREPSNB = "ProductRestEndpointPageSummaryNoBody";
609
+ const _PRR = "PutRoutingRule";
610
+ const _PRRR = "PutRoutingRuleRequest";
611
+ const _PRRRu = "PutRoutingRuleResponse";
612
+ const _PS = "PublishStatus";
613
+ const _PSo = "PortalSummary";
614
+ const _PSr = "PreviewStatus";
615
+ const _PT = "ProtocolType";
616
+ const _PTa = "PageTitle";
617
+ const _PTo = "PortalTheme";
618
+ const _PU = "PreviewUrl";
619
+ const _Pa = "Path";
620
+ const _Pr = "Preview";
621
+ const _R = "Required";
622
+ const _RA = "ResourceArn";
623
+ const _RAC = "ResetAuthorizersCache";
624
+ const _RACR = "ResetAuthorizersCacheRequest";
625
+ const _RAI = "RestApiId";
626
+ const _RAMN = "RumAppMonitorName";
627
+ const _RAR = "ReimportApiRequest";
628
+ const _RARe = "ReimportApiResponse";
629
+ const _RAe = "ReimportApi";
630
+ const _RDC = "RawDisplayContent";
631
+ const _REI = "RestEndpointIdentifier";
632
+ const _RI = "RouteId";
633
+ const _RK = "RouteKey";
634
+ const _RM = "RoutingMode";
635
+ const _RMe = "RequestModels";
636
+ const _RMes = "ResponseModels";
637
+ const _RO = "ResourceOwner";
638
+ const _ROAI = "ResourceOwnerAccountId";
639
+ const _RP = "RequestParameters";
640
+ const _RPK = "RequestParameterKey";
641
+ const _RPe = "ResponseParameters";
642
+ const _RPo = "RouteParameters";
643
+ const _RR = "RoutingRules";
644
+ const _RRA = "RoutingRuleArn";
645
+ const _RRAIA = "RoutingRuleActionInvokeApi";
646
+ const _RRAo = "RoutingRuleAction";
647
+ const _RRC = "RoutingRuleCondition";
648
+ const _RRI = "RouteResponseId";
649
+ const _RRIo = "RoutingRuleId";
650
+ const _RRK = "RouteResponseKey";
651
+ const _RRMBP = "RoutingRuleMatchBasePaths";
652
+ const _RRMH = "RoutingRuleMatchHeaders";
653
+ const _RRMHV = "RoutingRuleMatchHeaderValue";
654
+ const _RRSE = "RouteResponseSelectionExpression";
655
+ const _RRo = "RouteResponse";
656
+ const _RRou = "RoutingRule";
657
+ const _RS = "RouteSettings";
658
+ const _RSE = "RouteSelectionExpression";
659
+ const _RSM = "RouteSettingsMap";
660
+ const _RT = "ResourceType";
661
+ const _RTe = "RequestTemplates";
662
+ const _RTes = "ResponseTemplates";
663
+ const _Ro = "Route";
664
+ const _S = "Stage";
665
+ const _SBP = "StripBasePath";
666
+ const _SE = "StatusException";
667
+ const _SGI = "SecurityGroupIds";
668
+ const _SI = "SubnetIds";
669
+ const _SN = "StageName";
670
+ const _SNTV = "ServerNameToVerify";
671
+ const _SNe = "SectionName";
672
+ const _SP = "SecurityPolicy";
673
+ const _SV = "StageVariables";
674
+ const _Sc = "Schema";
675
+ const _Se = "Section";
676
+ const _Sp = "Specification";
677
+ const _St = "Status";
678
+ const _T = "Tags";
679
+ const _TBL = "ThrottlingBurstLimit";
680
+ const _TC = "TlsConfig";
681
+ const _TCI = "TlsConfigInput";
682
+ const _TCe = "TextColor";
683
+ const _TIM = "TimeoutInMillis";
684
+ const _TIS = "TryItState";
685
+ const _TK = "TagKeys";
686
+ const _TMRE = "TooManyRequestsException";
687
+ const _TR = "TagResource";
688
+ const _TRL = "ThrottlingRateLimit";
689
+ const _TRR = "TagResourceRequest";
690
+ const _TRRa = "TagResourceResponse";
691
+ const _TSE = "TemplateSelectionExpression";
692
+ const _TU = "TruststoreUri";
693
+ const _TV = "TruststoreVersion";
694
+ const _TW = "TruststoreWarnings";
695
+ const _Ta = "Target";
696
+ const _Th = "Theme";
697
+ const _Ti = "Title";
698
+ const _UA = "UpdateApi";
699
+ const _UAM = "UpdateApiMapping";
700
+ const _UAMR = "UpdateApiMappingRequest";
701
+ const _UAMRp = "UpdateApiMappingResponse";
702
+ const _UAR = "UpdateApiRequest";
703
+ const _UARp = "UpdateApiResponse";
704
+ const _UARpd = "UpdateAuthorizerRequest";
705
+ const _UARpda = "UpdateAuthorizerResponse";
706
+ const _UAp = "UpdateAuthorizer";
707
+ const _UD = "UpdateDeployment";
708
+ const _UDN = "UpdateDomainName";
709
+ const _UDNR = "UpdateDomainNameRequest";
710
+ const _UDNRp = "UpdateDomainNameResponse";
711
+ const _UDR = "UpdateDeploymentRequest";
712
+ const _UDRp = "UpdateDeploymentResponse";
713
+ const _UI = "UpdateIntegration";
714
+ const _UIR = "UpdateIntegrationRequest";
715
+ const _UIRR = "UpdateIntegrationResponseRequest";
716
+ const _UIRRp = "UpdateIntegrationResponseResponse";
717
+ const _UIRp = "UpdateIntegrationResult";
718
+ const _UIRpd = "UpdateIntegrationResponse";
719
+ const _UM = "UpdateModel";
720
+ const _UMR = "UpdateModelRequest";
721
+ const _UMRp = "UpdateModelResponse";
722
+ const _UP = "UpdatePortal";
723
+ const _UPA = "UserPoolArn";
724
+ const _UPD = "UserPoolDomain";
725
+ const _UPP = "UpdatePortalProduct";
726
+ const _UPPR = "UpdatePortalProductRequest";
727
+ const _UPPRp = "UpdatePortalProductResponse";
728
+ const _UPPRpd = "UpdateProductPageRequest";
729
+ const _UPPRpda = "UpdateProductPageResponse";
730
+ const _UPPp = "UpdateProductPage";
731
+ const _UPR = "UpdatePortalRequest";
732
+ const _UPREP = "UpdateProductRestEndpointPage";
733
+ const _UPREPR = "UpdateProductRestEndpointPageRequest";
734
+ const _UPREPRp = "UpdateProductRestEndpointPageResponse";
735
+ const _UPRp = "UpdatePortalResponse";
736
+ const _UR = "UntagResource";
737
+ const _URR = "UntagResourceRequest";
738
+ const _URRR = "UpdateRouteResponseRequest";
739
+ const _URRRp = "UpdateRouteResponseResponse";
740
+ const _URRp = "UpdateRouteRequest";
741
+ const _URRpd = "UpdateRouteResult";
742
+ const _URRpda = "UpdateRouteResponse";
743
+ const _URp = "UpdateRoute";
744
+ const _US = "UpdateStage";
745
+ const _USR = "UpdateStageRequest";
746
+ const _USRp = "UpdateStageResponse";
747
+ const _UVL = "UpdateVpcLink";
748
+ const _UVLR = "UpdateVpcLinkRequest";
749
+ const _UVLRp = "UpdateVpcLinkResponse";
750
+ const _V = "Version";
751
+ const _VG = "ValueGlob";
752
+ const _VL = "VpcLink";
753
+ const _VLI = "VpcLinkId";
754
+ const _VLS = "VpcLinkStatus";
755
+ const _VLSM = "VpcLinkStatusMessage";
756
+ const _VLV = "VpcLinkVersion";
757
+ const _Va = "Value";
758
+ const _W = "Warnings";
759
+ const _a = "authorization";
760
+ const _aC = "allowCredentials";
761
+ const _aCA = "authorizerCredentialsArn";
762
+ const _aCI = "appClientId";
763
+ const _aCc = "accentColor";
764
+ const _aD = "autoDeployed";
765
+ const _aDu = "autoDeploy";
766
+ const _aE = "apiEndpoint";
767
+ const _aGDN = "apiGatewayDomainName";
768
+ const _aGM = "apiGatewayManaged";
769
+ const _aH = "allowHeaders";
770
+ const _aI = "apiId";
771
+ const _aIu = "authorizerId";
772
+ const _aKR = "apiKeyRequired";
773
+ const _aKSE = "apiKeySelectionExpression";
774
+ const _aLS = "accessLogSettings";
775
+ const _aM = "allowMethods";
776
+ const _aMI = "apiMappingId";
777
+ const _aMK = "apiMappingKey";
778
+ const _aMSE = "apiMappingSelectionExpression";
779
+ const _aMc = "acmManaged";
780
+ const _aO = "allowOrigins";
781
+ const _aOn = "anyOf";
782
+ const _aPFV = "authorizerPayloadFormatVersion";
783
+ const _aRTIS = "authorizerResultTtlInSeconds";
784
+ const _aS = "authorizationScopes";
785
+ const _aT = "authorizerType";
786
+ const _aTu = "authorizationType";
787
+ const _aU = "authorizerUri";
788
+ const _ac = "actions";
789
+ const _au = "audience";
790
+ const _b = "body";
791
+ const _bC = "backgroundColor";
792
+ const _ba = "basepath";
793
+ const _c = "client";
794
+ const _cA = "certificateArn";
795
+ const _cAr = "credentialsArn";
796
+ const _cC = "corsConfiguration";
797
+ const _cCI = "clientCertificateId";
798
+ const _cCo = "cognitoConfig";
799
+ const _cCu = "customColors";
800
+ const _cD = "createdDate";
801
+ const _cHS = "contentHandlingStrategy";
802
+ const _cI = "connectionId";
803
+ const _cN = "certificateName";
804
+ const _cT = "connectionType";
805
+ const _cTo = "contentType";
806
+ const _cUD = "certificateUploadDate";
807
+ const _co = "conditions";
808
+ const _con = "contents";
809
+ const _d = "description";
810
+ const _dA = "destinationArn";
811
+ const _dC = "displayContent";
812
+ const _dEAE = "disableExecuteApiEndpoint";
813
+ const _dI = "deploymentId";
814
+ const _dME = "detailedMetricsEnabled";
815
+ const _dN = "domainName";
816
+ const _dNA = "domainNameArn";
817
+ const _dNC = "domainNameConfigurations";
818
+ const _dNI = "domainNameId";
819
+ const _dNS = "domainNameStatus";
820
+ const _dNSM = "domainNameStatusMessage";
821
+ const _dNi = "displayName";
822
+ const _dO = "displayOrder";
823
+ const _dRS = "defaultRouteSettings";
824
+ const _dS = "deploymentStatus";
825
+ const _dSM = "deploymentStatusMessage";
826
+ const _dSV = "disableSchemaValidation";
827
+ const _dTE = "dataTraceEnabled";
828
+ const _e = "error";
829
+ const _eC = "endpointConfiguration";
830
+ const _eH = "exposeHeaders";
831
+ const _eSR = "enableSimpleResponses";
832
+ const _eT = "endpointType";
833
+ const _eV = "exportVersion";
834
+ const _eVC = "errorValidationColor";
835
+ const _en = "endpoint";
836
+ const _ex = "exception";
837
+ const _f = "format";
838
+ const _fOW = "failOnWarnings";
839
+ const _h = "header";
840
+ const _hC = "headerColor";
841
+ const _hE = "httpError";
842
+ const _hQ = "httpQuery";
843
+ const _hZI = "hostedZoneId";
844
+ const _ht = "http";
845
+ const _i = "items";
846
+ const _iA = "invokeApi";
847
+ const _iAT = "ipAddressType";
848
+ const _iE = "includeExtensions";
849
+ const _iI = "importInfo";
850
+ const _iIn = "integrationId";
851
+ const _iM = "integrationMethod";
852
+ const _iP = "identifierParts";
853
+ const _iPPA = "includedPortalProductArns";
854
+ const _iRDC = "includeRawDisplayContent";
855
+ const _iRI = "integrationResponseId";
856
+ const _iRK = "integrationResponseKey";
857
+ const _iRSE = "integrationResponseSelectionExpression";
858
+ const _iS = "identitySource";
859
+ const _iSn = "integrationSubtype";
860
+ const _iT = "integrationType";
861
+ const _iU = "integrationUri";
862
+ const _iVE = "identityValidationExpression";
863
+ const _is = "issuer";
864
+ const _jC = "jwtConfiguration";
865
+ const _jN = "jsonName";
866
+ const _lDSM = "lastDeploymentStatusMessage";
867
+ const _lL = "loggingLevel";
868
+ const _lLU = "logoLastUploaded";
869
+ const _lM = "lastModified";
870
+ const _lOA = "__listOfApi";
871
+ const _lOAM = "__listOfApiMapping";
872
+ const _lOAi = "__listOfAuthorizer";
873
+ const _lOD = "__listOfDeployment";
874
+ const _lODN = "__listOfDomainName";
875
+ const _lOI = "__listOfIntegration";
876
+ const _lOIR = "__listOfIntegrationResponse";
877
+ const _lOM = "__listOfModel";
878
+ const _lOPPS = "__listOfPortalProductSummary";
879
+ const _lOPPSNB = "__listOfProductPageSummaryNoBody";
880
+ const _lOPREPSNB = "__listOfProductRestEndpointPageSummaryNoBody";
881
+ const _lOPS = "__listOfPortalSummary";
882
+ const _lOR = "__listOfRoute";
883
+ const _lORR = "__listOfRouteResponse";
884
+ const _lORRA = "__listOfRoutingRuleAction";
885
+ const _lORRC = "__listOfRoutingRuleCondition";
886
+ const _lORRMHV = "__listOfRoutingRuleMatchHeaderValue";
887
+ const _lORRi = "__listOfRoutingRule";
888
+ const _lOS = "__listOfSection";
889
+ const _lOSi = "__listOfStage";
890
+ const _lOVL = "__listOfVpcLink";
891
+ const _lP = "lastPublished";
892
+ const _lPD = "lastPublishedDescription";
893
+ const _lT = "limitType";
894
+ const _lU = "logoUri";
895
+ const _lUD = "lastUpdatedDate";
896
+ const _m = "message";
897
+ const _mA = "maxAge";
898
+ const _mBP = "matchBasePaths";
899
+ const _mH = "matchHeaders";
900
+ const _mI = "modelId";
901
+ const _mR = "maxResults";
902
+ const _mSE = "modelSelectionExpression";
903
+ const _mTA = "mutualTlsAuthentication";
904
+ const _me = "method";
905
+ const _n = "name";
906
+ const _nC = "navigationColor";
907
+ const _nT = "nextToken";
908
+ const _no = "none";
909
+ const _o = "overrides";
910
+ const _oN = "operationName";
911
+ const _oPA = "overviewPageArn";
912
+ const _oT = "outputType";
913
+ const _oVCA = "ownershipVerificationCertificateArn";
914
+ const _p = "priority";
915
+ const _pA = "portalArn";
916
+ const _pB = "passthroughBehavior";
917
+ const _pC = "portalContent";
918
+ const _pD = "policyDocument";
919
+ const _pDDN = "portalDefaultDomainName";
920
+ const _pDHZI = "portalDomainHostedZoneId";
921
+ const _pFV = "payloadFormatVersion";
922
+ const _pI = "portalId";
923
+ const _pPA = "portalProductArn";
924
+ const _pPAr = "productPageArn";
925
+ const _pPAro = "productPageArns";
926
+ const _pPI = "portalProductId";
927
+ const _pPIr = "productPageId";
928
+ const _pREPA = "productRestEndpointPageArn";
929
+ const _pREPAr = "productRestEndpointPageArns";
930
+ const _pREPI = "productRestEndpointPageId";
931
+ const _pS = "publishStatus";
932
+ const _pSr = "previewStatus";
933
+ const _pT = "protocolType";
934
+ const _pTa = "pageTitle";
935
+ const _pU = "previewUrl";
936
+ const _pa = "path";
937
+ const _pr = "preview";
938
+ const _r = "required";
939
+ const _rAI = "restApiId";
940
+ const _rAMN = "rumAppMonitorName";
941
+ const _rDC = "rawDisplayContent";
942
+ const _rEI = "restEndpointIdentifier";
943
+ const _rI = "routeId";
944
+ const _rK = "routeKey";
945
+ const _rM = "routingMode";
946
+ const _rMe = "requestModels";
947
+ const _rMes = "responseModels";
948
+ const _rO = "resourceOwner";
949
+ const _rOAI = "resourceOwnerAccountId";
950
+ const _rP = "requestParameters";
951
+ const _rPe = "responseParameters";
952
+ const _rR = "routingRules";
953
+ const _rRA = "routingRuleArn";
954
+ const _rRI = "routeResponseId";
955
+ const _rRIo = "routingRuleId";
956
+ const _rRK = "routeResponseKey";
957
+ const _rRSE = "routeResponseSelectionExpression";
958
+ const _rS = "routeSettings";
959
+ const _rSE = "routeSelectionExpression";
960
+ const _rT = "resourceType";
961
+ const _rTe = "requestTemplates";
962
+ const _rTes = "responseTemplates";
963
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.apigatewayv2";
964
+ const _sBP = "stripBasePath";
965
+ const _sE = "statusException";
966
+ const _sGI = "securityGroupIds";
967
+ const _sI = "subnetIds";
968
+ const _sN = "stageName";
969
+ const _sNTV = "serverNameToVerify";
970
+ const _sNe = "sectionName";
971
+ const _sP = "securityPolicy";
972
+ const _sV = "stageVariables";
973
+ const _sc = "schema";
974
+ const _st = "stage";
975
+ const _sta = "status";
976
+ const _t = "tags";
977
+ const _tBL = "throttlingBurstLimit";
978
+ const _tC = "tlsConfig";
979
+ const _tCe = "textColor";
980
+ const _tIM = "timeoutInMillis";
981
+ const _tIS = "tryItState";
982
+ const _tK = "tagKeys";
983
+ const _tRL = "throttlingRateLimit";
984
+ const _tSE = "templateSelectionExpression";
985
+ const _tU = "truststoreUri";
986
+ const _tV = "truststoreVersion";
987
+ const _tW = "truststoreWarnings";
988
+ const _ta = "target";
989
+ const _th = "theme";
990
+ const _ti = "title";
991
+ const _uPA = "userPoolArn";
992
+ const _uPD = "userPoolDomain";
993
+ const _v = "version";
994
+ const _vG = "valueGlob";
995
+ const _vLI = "vpcLinkId";
996
+ const _vLS = "vpcLinkStatus";
997
+ const _vLSM = "vpcLinkStatusMessage";
998
+ const _vLV = "vpcLinkVersion";
999
+ const _va = "value";
1000
+ const _w = "warnings";
1001
+ const n0 = "com.amazonaws.apigatewayv2";
1002
+ const _s_registry = TypeRegistry.for(_s);
1003
+ var ApiGatewayV2ServiceException$ = [-3, _s, "ApiGatewayV2ServiceException", 0, [], []];
1004
+ _s_registry.registerError(ApiGatewayV2ServiceException$, ApiGatewayV2ServiceException);
1005
+ const n0_registry = TypeRegistry.for(n0);
1006
+ var AccessDeniedException$ = [-3, n0, _ADE,
1007
+ { [_e]: _c, [_hE]: 403 },
1008
+ [_M],
1009
+ [[0, { [_jN]: _m }]]
1010
+ ];
1011
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
1012
+ var BadRequestException$ = [-3, n0, _BRE,
1013
+ { [_e]: _c, [_hE]: 400 },
1014
+ [_M],
1015
+ [[0, { [_jN]: _m }]]
1016
+ ];
1017
+ n0_registry.registerError(BadRequestException$, BadRequestException);
1018
+ var ConflictException$ = [-3, n0, _CE,
1019
+ { [_e]: _c, [_hE]: 409 },
1020
+ [_M],
1021
+ [[0, { [_jN]: _m }]]
1022
+ ];
1023
+ n0_registry.registerError(ConflictException$, ConflictException);
1024
+ var NotFoundException$ = [-3, n0, _NFE,
1025
+ { [_e]: _c, [_hE]: 404 },
1026
+ [_M, _RT],
1027
+ [[0, { [_jN]: _m }], [0, { [_jN]: _rT }]]
1028
+ ];
1029
+ n0_registry.registerError(NotFoundException$, NotFoundException);
1030
+ var TooManyRequestsException$ = [-3, n0, _TMRE,
1031
+ { [_e]: _c, [_hE]: 429 },
1032
+ [_LT, _M],
1033
+ [[0, { [_jN]: _lT }], [0, { [_jN]: _m }]]
1034
+ ];
1035
+ n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
1036
+ const errorTypeRegistries = [
1037
+ _s_registry,
1038
+ n0_registry,
1039
+ ];
1040
+ var AccessLogSettings$ = [3, n0, _ALS,
1041
+ 0,
1042
+ [_DA, _F],
1043
+ [[0, { [_jN]: _dA }], [0, { [_jN]: _f }]]
1044
+ ];
1045
+ var ACMManaged$ = [3, n0, _ACMM,
1046
+ 0,
1047
+ [_CA, _DN],
1048
+ [[0, { [_jN]: _cA }], [0, { [_jN]: _dN }]], 2
1049
+ ];
1050
+ var Api$ = [3, n0, _A,
1051
+ 0,
1052
+ [_N, _PT, _RSE, _AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _T, _V, _W],
1053
+ [[0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]], 3
1054
+ ];
1055
+ var ApiMapping$ = [3, n0, _AM,
1056
+ 0,
1057
+ [_AI, _S, _AMI, _AMK],
1058
+ [[0, { [_jN]: _aI }], [0, { [_jN]: _st }], [0, { [_jN]: _aMI }], [0, { [_jN]: _aMK }]], 2
1059
+ ];
1060
+ var Authorization$ = [3, n0, _Au,
1061
+ 0,
1062
+ [_CCo, _No],
1063
+ [[() => CognitoConfig$, { [_jN]: _cCo }], [() => None$, { [_jN]: _no }]]
1064
+ ];
1065
+ var Authorizer$ = [3, n0, _Aut,
1066
+ 0,
1067
+ [_N, _ACA, _AIu, _APFV, _ARTIS, _AT, _AU, _ESR, _IS, _IVE, _JC],
1068
+ [[0, { [_jN]: _n }], [0, { [_jN]: _aCA }], [0, { [_jN]: _aIu }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aT }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }]], 1
1069
+ ];
1070
+ var CognitoConfig$ = [3, n0, _CCo,
1071
+ 0,
1072
+ [_ACI, _UPA, _UPD],
1073
+ [[0, { [_jN]: _aCI }], [0, { [_jN]: _uPA }], [0, { [_jN]: _uPD }]], 3
1074
+ ];
1075
+ var Cors$ = [3, n0, _C,
1076
+ 0,
1077
+ [_AC, _AH, _AMl, _AO, _EH, _MA],
1078
+ [[2, { [_jN]: _aC }], [64 | 0, { [_jN]: _aH }], [64 | 0, { [_jN]: _aM }], [64 | 0, { [_jN]: _aO }], [64 | 0, { [_jN]: _eH }], [1, { [_jN]: _mA }]]
1079
+ ];
1080
+ var CreateApiMappingRequest$ = [3, n0, _CAMR,
1081
+ 0,
1082
+ [_AI, _DN, _S, _AMK],
1083
+ [[0, { [_jN]: _aI }], [0, 1], [0, { [_jN]: _st }], [0, { [_jN]: _aMK }]], 3
1084
+ ];
1085
+ var CreateApiMappingResponse$ = [3, n0, _CAMRr,
1086
+ 0,
1087
+ [_AI, _AMI, _AMK, _S],
1088
+ [[0, { [_jN]: _aI }], [0, { [_jN]: _aMI }], [0, { [_jN]: _aMK }], [0, { [_jN]: _st }]]
1089
+ ];
1090
+ var CreateApiRequest$ = [3, n0, _CAR,
1091
+ 0,
1092
+ [_N, _PT, _AKSE, _CC, _CAr, _D, _DSV, _DEAE, _IAT, _RK, _RSE, _T, _Ta, _V],
1093
+ [[0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [0, { [_jN]: _iAT }], [0, { [_jN]: _rK }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _ta }], [0, { [_jN]: _v }]], 2
1094
+ ];
1095
+ var CreateApiResponse$ = [3, n0, _CARr,
1096
+ 0,
1097
+ [_AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _N, _PT, _RSE, _T, _V, _W],
1098
+ [[0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]]
1099
+ ];
1100
+ var CreateAuthorizerRequest$ = [3, n0, _CARre,
1101
+ 0,
1102
+ [_AI, _AT, _IS, _N, _ACA, _APFV, _ARTIS, _AU, _ESR, _IVE, _JC],
1103
+ [[0, 1], [0, { [_jN]: _aT }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _n }], [0, { [_jN]: _aCA }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }]], 4
1104
+ ];
1105
+ var CreateAuthorizerResponse$ = [3, n0, _CARrea,
1106
+ 0,
1107
+ [_ACA, _AIu, _APFV, _ARTIS, _AT, _AU, _ESR, _IS, _IVE, _JC, _N],
1108
+ [[0, { [_jN]: _aCA }], [0, { [_jN]: _aIu }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aT }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }], [0, { [_jN]: _n }]]
1109
+ ];
1110
+ var CreateDeploymentRequest$ = [3, n0, _CDR,
1111
+ 0,
1112
+ [_AI, _D, _SN],
1113
+ [[0, 1], [0, { [_jN]: _d }], [0, { [_jN]: _sN }]], 1
1114
+ ];
1115
+ var CreateDeploymentResponse$ = [3, n0, _CDRr,
1116
+ 0,
1117
+ [_AD, _CD, _DI, _DS, _DSM, _D],
1118
+ [[2, { [_jN]: _aD }], [5, { [_jN]: _cD }], [0, { [_jN]: _dI }], [0, { [_jN]: _dS }], [0, { [_jN]: _dSM }], [0, { [_jN]: _d }]]
1119
+ ];
1120
+ var CreateDomainNameRequest$ = [3, n0, _CDNR,
1121
+ 0,
1122
+ [_DN, _DNC, _MTA, _RM, _T],
1123
+ [[0, { [_jN]: _dN }], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthenticationInput$, { [_jN]: _mTA }], [0, { [_jN]: _rM }], [128 | 0, { [_jN]: _t }]], 1
1124
+ ];
1125
+ var CreateDomainNameResponse$ = [3, n0, _CDNRr,
1126
+ 0,
1127
+ [_AMSE, _DN, _DNA, _DNC, _MTA, _RM, _T],
1128
+ [[0, { [_jN]: _aMSE }], [0, { [_jN]: _dN }], [0, { [_jN]: _dNA }], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthentication$, { [_jN]: _mTA }], [0, { [_jN]: _rM }], [128 | 0, { [_jN]: _t }]]
1129
+ ];
1130
+ var CreateIntegrationRequest$ = [3, n0, _CIR,
1131
+ 0,
1132
+ [_AI, _IT, _CI, _CT, _CHS, _CAr, _D, _IM, _ISn, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
1133
+ [[0, 1], [0, { [_jN]: _iT }], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iM }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfigInput$, { [_jN]: _tC }]], 2
1134
+ ];
1135
+ var CreateIntegrationResponseRequest$ = [3, n0, _CIRR,
1136
+ 0,
1137
+ [_AI, _IIn, _IRK, _CHS, _RPe, _RTes, _TSE],
1138
+ [[0, 1], [0, 1], [0, { [_jN]: _iRK }], [0, { [_jN]: _cHS }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]], 3
1139
+ ];
1140
+ var CreateIntegrationResponseResponse$ = [3, n0, _CIRRr,
1141
+ 0,
1142
+ [_CHS, _IRI, _IRK, _RPe, _RTes, _TSE],
1143
+ [[0, { [_jN]: _cHS }], [0, { [_jN]: _iRI }], [0, { [_jN]: _iRK }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]]
1144
+ ];
1145
+ var CreateIntegrationResult$ = [3, n0, _CIRr,
1146
+ 0,
1147
+ [_AGM, _CI, _CT, _CHS, _CAr, _D, _IIn, _IM, _IRSE, _ISn, _IT, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
1148
+ [[2, { [_jN]: _aGM }], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iIn }], [0, { [_jN]: _iM }], [0, { [_jN]: _iRSE }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iT }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfig$, { [_jN]: _tC }]]
1149
+ ];
1150
+ var CreateModelRequest$ = [3, n0, _CMR,
1151
+ 0,
1152
+ [_AI, _N, _Sc, _CTo, _D],
1153
+ [[0, 1], [0, { [_jN]: _n }], [0, { [_jN]: _sc }], [0, { [_jN]: _cTo }], [0, { [_jN]: _d }]], 3
1154
+ ];
1155
+ var CreateModelResponse$ = [3, n0, _CMRr,
1156
+ 0,
1157
+ [_CTo, _D, _MI, _N, _Sc],
1158
+ [[0, { [_jN]: _cTo }], [0, { [_jN]: _d }], [0, { [_jN]: _mI }], [0, { [_jN]: _n }], [0, { [_jN]: _sc }]]
1159
+ ];
1160
+ var CreatePortalProductRequest$ = [3, n0, _CPPR,
1161
+ 0,
1162
+ [_DNi, _D, _T],
1163
+ [[0, { [_jN]: _dNi }], [0, { [_jN]: _d }], [128 | 0, { [_jN]: _t }]], 1
1164
+ ];
1165
+ var CreatePortalProductResponse$ = [3, n0, _CPPRr,
1166
+ 0,
1167
+ [_D, _DNi, _DO, _LM, _PPA, _PPI, _T],
1168
+ [[0, { [_jN]: _d }], [0, { [_jN]: _dNi }], [() => DisplayOrder$, { [_jN]: _dO }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPA }], [0, { [_jN]: _pPI }], [128 | 0, { [_jN]: _t }]]
1169
+ ];
1170
+ var CreatePortalRequest$ = [3, n0, _CPR,
1171
+ 0,
1172
+ [_Au, _EC, _PC, _IPPA, _LU, _RAMN, _T],
1173
+ [[() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationRequest$, { [_jN]: _eC }], [() => PortalContent$, { [_jN]: _pC }], [64 | 0, { [_jN]: _iPPA }], [0, { [_jN]: _lU }], [0, { [_jN]: _rAMN }], [128 | 0, { [_jN]: _t }]], 3
1174
+ ];
1175
+ var CreatePortalResponse$ = [3, n0, _CPRr,
1176
+ 0,
1177
+ [_Au, _EC, _IPPA, _LM, _LP, _LPD, _PA, _PC, _PI, _PS, _RAMN, _SE, _T],
1178
+ [[() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationResponse$, { [_jN]: _eC }], [64 | 0, { [_jN]: _iPPA }], [5, { [_jN]: _lM }], [5, { [_jN]: _lP }], [0, { [_jN]: _lPD }], [0, { [_jN]: _pA }], [() => PortalContent$, { [_jN]: _pC }], [0, { [_jN]: _pI }], [0, { [_jN]: _pS }], [0, { [_jN]: _rAMN }], [() => StatusException$, { [_jN]: _sE }], [128 | 0, { [_jN]: _t }]]
1179
+ ];
1180
+ var CreateProductPageRequest$ = [3, n0, _CPPRre,
1181
+ 0,
1182
+ [_DC, _PPI],
1183
+ [[() => DisplayContent$, { [_jN]: _dC }], [0, 1]], 2
1184
+ ];
1185
+ var CreateProductPageResponse$ = [3, n0, _CPPRrea,
1186
+ 0,
1187
+ [_DC, _LM, _PPAr, _PPIr],
1188
+ [[() => DisplayContent$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPAr }], [0, { [_jN]: _pPIr }]]
1189
+ ];
1190
+ var CreateProductRestEndpointPageRequest$ = [3, n0, _CPREPR,
1191
+ 0,
1192
+ [_PPI, _REI, _DC, _TIS],
1193
+ [[0, 1], [() => RestEndpointIdentifier$, { [_jN]: _rEI }], [() => EndpointDisplayContent$, { [_jN]: _dC }], [0, { [_jN]: _tIS }]], 2
1194
+ ];
1195
+ var CreateProductRestEndpointPageResponse$ = [3, n0, _CPREPRr,
1196
+ 0,
1197
+ [_DC, _LM, _PREPA, _PREPI, _REI, _St, _SE, _TIS],
1198
+ [[() => EndpointDisplayContentResponse$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pREPA }], [0, { [_jN]: _pREPI }], [() => RestEndpointIdentifier$, { [_jN]: _rEI }], [0, { [_jN]: _sta }], [() => StatusException$, { [_jN]: _sE }], [0, { [_jN]: _tIS }]]
1199
+ ];
1200
+ var CreateRouteRequest$ = [3, n0, _CRR,
1201
+ 0,
1202
+ [_AI, _RK, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RRSE, _Ta],
1203
+ [[0, 1], [0, { [_jN]: _rK }], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]], 2
1204
+ ];
1205
+ var CreateRouteResponseRequest$ = [3, n0, _CRRR,
1206
+ 0,
1207
+ [_AI, _RI, _RRK, _MSE, _RMes, _RPe],
1208
+ [[0, 1], [0, 1], [0, { [_jN]: _rRK }], [0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }]], 3
1209
+ ];
1210
+ var CreateRouteResponseResponse$ = [3, n0, _CRRRr,
1211
+ 0,
1212
+ [_MSE, _RMes, _RPe, _RRI, _RRK],
1213
+ [[0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }], [0, { [_jN]: _rRI }], [0, { [_jN]: _rRK }]]
1214
+ ];
1215
+ var CreateRouteResult$ = [3, n0, _CRRr,
1216
+ 0,
1217
+ [_AGM, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RI, _RK, _RRSE, _Ta],
1218
+ [[2, { [_jN]: _aGM }], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rI }], [0, { [_jN]: _rK }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]]
1219
+ ];
1220
+ var CreateRoutingRuleRequest$ = [3, n0, _CRRRre,
1221
+ 0,
1222
+ [_Ac, _Co, _DN, _P, _DNI],
1223
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [0, 1], [1, { [_jN]: _p }], [0, { [_hQ]: _dNI }]], 4
1224
+ ];
1225
+ var CreateRoutingRuleResponse$ = [3, n0, _CRRRrea,
1226
+ 0,
1227
+ [_Ac, _Co, _P, _RRA, _RRIo],
1228
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [1, { [_jN]: _p }], [0, { [_jN]: _rRA }], [0, { [_jN]: _rRIo }]]
1229
+ ];
1230
+ var CreateStageRequest$ = [3, n0, _CSR,
1231
+ 0,
1232
+ [_AI, _SN, _ALS, _ADu, _CCI, _DRS, _DI, _D, _RS, _SV, _T],
1233
+ [[0, 1], [0, { [_jN]: _sN }], [() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [() => RouteSettingsMap, { [_jN]: _rS }], [128 | 0, { [_jN]: _sV }], [128 | 0, { [_jN]: _t }]], 2
1234
+ ];
1235
+ var CreateStageResponse$ = [3, n0, _CSRr,
1236
+ 0,
1237
+ [_ALS, _AGM, _ADu, _CCI, _CD, _DRS, _DI, _D, _LDSM, _LUD, _RS, _SN, _SV, _T],
1238
+ [[() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aGM }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [5, { [_jN]: _cD }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [0, { [_jN]: _lDSM }], [5, { [_jN]: _lUD }], [() => RouteSettingsMap, { [_jN]: _rS }], [0, { [_jN]: _sN }], [128 | 0, { [_jN]: _sV }], [128 | 0, { [_jN]: _t }]]
1239
+ ];
1240
+ var CreateVpcLinkRequest$ = [3, n0, _CVLR,
1241
+ 0,
1242
+ [_N, _SI, _SGI, _T],
1243
+ [[0, { [_jN]: _n }], [64 | 0, { [_jN]: _sI }], [64 | 0, { [_jN]: _sGI }], [128 | 0, { [_jN]: _t }]], 2
1244
+ ];
1245
+ var CreateVpcLinkResponse$ = [3, n0, _CVLRr,
1246
+ 0,
1247
+ [_CD, _N, _SGI, _SI, _T, _VLI, _VLS, _VLSM, _VLV],
1248
+ [[5, { [_jN]: _cD }], [0, { [_jN]: _n }], [64 | 0, { [_jN]: _sGI }], [64 | 0, { [_jN]: _sI }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _vLI }], [0, { [_jN]: _vLS }], [0, { [_jN]: _vLSM }], [0, { [_jN]: _vLV }]]
1249
+ ];
1250
+ var CustomColors$ = [3, n0, _CCu,
1251
+ 0,
1252
+ [_ACc, _BC, _EVC, _HC, _NC, _TCe],
1253
+ [[0, { [_jN]: _aCc }], [0, { [_jN]: _bC }], [0, { [_jN]: _eVC }], [0, { [_jN]: _hC }], [0, { [_jN]: _nC }], [0, { [_jN]: _tCe }]], 6
1254
+ ];
1255
+ var DeleteAccessLogSettingsRequest$ = [3, n0, _DALSR,
1256
+ 0,
1257
+ [_AI, _SN],
1258
+ [[0, 1], [0, 1]], 2
1259
+ ];
1260
+ var DeleteApiMappingRequest$ = [3, n0, _DAMR,
1261
+ 0,
1262
+ [_AMI, _DN],
1263
+ [[0, 1], [0, 1]], 2
1264
+ ];
1265
+ var DeleteApiRequest$ = [3, n0, _DAR,
1266
+ 0,
1267
+ [_AI],
1268
+ [[0, 1]], 1
1269
+ ];
1270
+ var DeleteAuthorizerRequest$ = [3, n0, _DARe,
1271
+ 0,
1272
+ [_AI, _AIu],
1273
+ [[0, 1], [0, 1]], 2
1274
+ ];
1275
+ var DeleteCorsConfigurationRequest$ = [3, n0, _DCCR,
1276
+ 0,
1277
+ [_AI],
1278
+ [[0, 1]], 1
1279
+ ];
1280
+ var DeleteDeploymentRequest$ = [3, n0, _DDR,
1281
+ 0,
1282
+ [_AI, _DI],
1283
+ [[0, 1], [0, 1]], 2
1284
+ ];
1285
+ var DeleteDomainNameRequest$ = [3, n0, _DDNR,
1286
+ 0,
1287
+ [_DN],
1288
+ [[0, 1]], 1
1289
+ ];
1290
+ var DeleteIntegrationRequest$ = [3, n0, _DIR,
1291
+ 0,
1292
+ [_AI, _IIn],
1293
+ [[0, 1], [0, 1]], 2
1294
+ ];
1295
+ var DeleteIntegrationResponseRequest$ = [3, n0, _DIRR,
1296
+ 0,
1297
+ [_AI, _IIn, _IRI],
1298
+ [[0, 1], [0, 1], [0, 1]], 3
1299
+ ];
1300
+ var DeleteModelRequest$ = [3, n0, _DMR,
1301
+ 0,
1302
+ [_AI, _MI],
1303
+ [[0, 1], [0, 1]], 2
1304
+ ];
1305
+ var DeletePortalProductRequest$ = [3, n0, _DPPR,
1306
+ 0,
1307
+ [_PPI],
1308
+ [[0, 1]], 1
1309
+ ];
1310
+ var DeletePortalProductSharingPolicyRequest$ = [3, n0, _DPPSPR,
1311
+ 0,
1312
+ [_PPI],
1313
+ [[0, 1]], 1
1314
+ ];
1315
+ var DeletePortalRequest$ = [3, n0, _DPR,
1316
+ 0,
1317
+ [_PI],
1318
+ [[0, 1]], 1
1319
+ ];
1320
+ var DeleteProductPageRequest$ = [3, n0, _DPPRe,
1321
+ 0,
1322
+ [_PPI, _PPIr],
1323
+ [[0, 1], [0, 1]], 2
1324
+ ];
1325
+ var DeleteProductRestEndpointPageRequest$ = [3, n0, _DPREPR,
1326
+ 0,
1327
+ [_PPI, _PREPI],
1328
+ [[0, 1], [0, 1]], 2
1329
+ ];
1330
+ var DeleteRouteRequest$ = [3, n0, _DRR,
1331
+ 0,
1332
+ [_AI, _RI],
1333
+ [[0, 1], [0, 1]], 2
1334
+ ];
1335
+ var DeleteRouteRequestParameterRequest$ = [3, n0, _DRRPR,
1336
+ 0,
1337
+ [_AI, _RPK, _RI],
1338
+ [[0, 1], [0, 1], [0, 1]], 3
1339
+ ];
1340
+ var DeleteRouteResponseRequest$ = [3, n0, _DRRR,
1341
+ 0,
1342
+ [_AI, _RI, _RRI],
1343
+ [[0, 1], [0, 1], [0, 1]], 3
1344
+ ];
1345
+ var DeleteRouteSettingsRequest$ = [3, n0, _DRSR,
1346
+ 0,
1347
+ [_AI, _RK, _SN],
1348
+ [[0, 1], [0, 1], [0, 1]], 3
1349
+ ];
1350
+ var DeleteRoutingRuleRequest$ = [3, n0, _DRRRe,
1351
+ 0,
1352
+ [_DN, _RRIo, _DNI],
1353
+ [[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
1354
+ ];
1355
+ var DeleteStageRequest$ = [3, n0, _DSR,
1356
+ 0,
1357
+ [_AI, _SN],
1358
+ [[0, 1], [0, 1]], 2
1359
+ ];
1360
+ var DeleteVpcLinkRequest$ = [3, n0, _DVLR,
1361
+ 0,
1362
+ [_VLI],
1363
+ [[0, 1]], 1
1364
+ ];
1365
+ var DeleteVpcLinkResponse$ = [3, n0, _DVLRe,
1366
+ 0,
1367
+ [],
1368
+ []
1369
+ ];
1370
+ var Deployment$ = [3, n0, _De,
1371
+ 0,
1372
+ [_AD, _CD, _DI, _DS, _DSM, _D],
1373
+ [[2, { [_jN]: _aD }], [5, { [_jN]: _cD }], [0, { [_jN]: _dI }], [0, { [_jN]: _dS }], [0, { [_jN]: _dSM }], [0, { [_jN]: _d }]]
1374
+ ];
1375
+ var DisablePortalRequest$ = [3, n0, _DPRi,
1376
+ 0,
1377
+ [_PI],
1378
+ [[0, 1]], 1
1379
+ ];
1380
+ var DisplayContent$ = [3, n0, _DC,
1381
+ 0,
1382
+ [_B, _Ti],
1383
+ [[0, { [_jN]: _b }], [0, { [_jN]: _ti }]], 2
1384
+ ];
1385
+ var DisplayContentOverrides$ = [3, n0, _DCO,
1386
+ 0,
1387
+ [_B, _E, _ON],
1388
+ [[0, { [_jN]: _b }], [0, { [_jN]: _en }], [0, { [_jN]: _oN }]]
1389
+ ];
1390
+ var DisplayOrder$ = [3, n0, _DO,
1391
+ 0,
1392
+ [_Con, _OPA, _PPAro],
1393
+ [[() => __listOfSection, { [_jN]: _con }], [0, { [_jN]: _oPA }], [64 | 0, { [_jN]: _pPAro }]]
1394
+ ];
1395
+ var DomainName$ = [3, n0, _DN,
1396
+ 0,
1397
+ [_DN, _AMSE, _DNA, _DNC, _MTA, _RM, _T],
1398
+ [[0, { [_jN]: _dN }], [0, { [_jN]: _aMSE }], [0, { [_jN]: _dNA }], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthentication$, { [_jN]: _mTA }], [0, { [_jN]: _rM }], [128 | 0, { [_jN]: _t }]], 1
1399
+ ];
1400
+ var DomainNameConfiguration$ = [3, n0, _DNCo,
1401
+ 0,
1402
+ [_AGDN, _CA, _CN, _CUD, _DNS, _DNSM, _ET, _HZI, _IAT, _SP, _OVCA],
1403
+ [[0, { [_jN]: _aGDN }], [0, { [_jN]: _cA }], [0, { [_jN]: _cN }], [5, { [_jN]: _cUD }], [0, { [_jN]: _dNS }], [0, { [_jN]: _dNSM }], [0, { [_jN]: _eT }], [0, { [_jN]: _hZI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _sP }], [0, { [_jN]: _oVCA }]]
1404
+ ];
1405
+ var EndpointConfigurationRequest$ = [3, n0, _ECR,
1406
+ 0,
1407
+ [_AMc, _No],
1408
+ [[() => ACMManaged$, { [_jN]: _aMc }], [() => None$, { [_jN]: _no }]]
1409
+ ];
1410
+ var EndpointConfigurationResponse$ = [3, n0, _ECRn,
1411
+ 0,
1412
+ [_PDDN, _PDHZI, _CA, _DN],
1413
+ [[0, { [_jN]: _pDDN }], [0, { [_jN]: _pDHZI }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }]], 2
1414
+ ];
1415
+ var EndpointDisplayContent$ = [3, n0, _EDC,
1416
+ 0,
1417
+ [_No, _O],
1418
+ [[() => None$, { [_jN]: _no }], [() => DisplayContentOverrides$, { [_jN]: _o }]]
1419
+ ];
1420
+ var EndpointDisplayContentResponse$ = [3, n0, _EDCR,
1421
+ 0,
1422
+ [_E, _B, _ON],
1423
+ [[0, { [_jN]: _en }], [0, { [_jN]: _b }], [0, { [_jN]: _oN }]], 1
1424
+ ];
1425
+ var ExportApiRequest$ = [3, n0, _EAR,
1426
+ 0,
1427
+ [_AI, _OT, _Sp, _EV, _IE, _SN],
1428
+ [[0, 1], [0, { [_hQ]: _oT }], [0, 1], [0, { [_hQ]: _eV }], [2, { [_hQ]: _iE }], [0, { [_hQ]: _sN }]], 3
1429
+ ];
1430
+ var ExportApiResponse$ = [3, n0, _EARx,
1431
+ 0,
1432
+ [_b],
1433
+ [[21, 16]]
1434
+ ];
1435
+ var GetApiMappingRequest$ = [3, n0, _GAMR,
1436
+ 0,
1437
+ [_AMI, _DN],
1438
+ [[0, 1], [0, 1]], 2
1439
+ ];
1440
+ var GetApiMappingResponse$ = [3, n0, _GAMRe,
1441
+ 0,
1442
+ [_AI, _AMI, _AMK, _S],
1443
+ [[0, { [_jN]: _aI }], [0, { [_jN]: _aMI }], [0, { [_jN]: _aMK }], [0, { [_jN]: _st }]]
1444
+ ];
1445
+ var GetApiMappingsRequest$ = [3, n0, _GAMRet,
1446
+ 0,
1447
+ [_DN, _MR, _NT],
1448
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1449
+ ];
1450
+ var GetApiMappingsResponse$ = [3, n0, _GAMRetp,
1451
+ 0,
1452
+ [_I, _NT],
1453
+ [[() => __listOfApiMapping, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1454
+ ];
1455
+ var GetApiRequest$ = [3, n0, _GAR,
1456
+ 0,
1457
+ [_AI],
1458
+ [[0, 1]], 1
1459
+ ];
1460
+ var GetApiResponse$ = [3, n0, _GARe,
1461
+ 0,
1462
+ [_AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _N, _PT, _RSE, _T, _V, _W],
1463
+ [[0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]]
1464
+ ];
1465
+ var GetApisRequest$ = [3, n0, _GARet,
1466
+ 0,
1467
+ [_MR, _NT],
1468
+ [[0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1469
+ ];
1470
+ var GetApisResponse$ = [3, n0, _GARetp,
1471
+ 0,
1472
+ [_I, _NT],
1473
+ [[() => __listOfApi, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1474
+ ];
1475
+ var GetAuthorizerRequest$ = [3, n0, _GARetu,
1476
+ 0,
1477
+ [_AI, _AIu],
1478
+ [[0, 1], [0, 1]], 2
1479
+ ];
1480
+ var GetAuthorizerResponse$ = [3, n0, _GARetut,
1481
+ 0,
1482
+ [_ACA, _AIu, _APFV, _ARTIS, _AT, _AU, _ESR, _IS, _IVE, _JC, _N],
1483
+ [[0, { [_jN]: _aCA }], [0, { [_jN]: _aIu }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aT }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }], [0, { [_jN]: _n }]]
1484
+ ];
1485
+ var GetAuthorizersRequest$ = [3, n0, _GARetuth,
1486
+ 0,
1487
+ [_AI, _MR, _NT],
1488
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1489
+ ];
1490
+ var GetAuthorizersResponse$ = [3, n0, _GARetutho,
1491
+ 0,
1492
+ [_I, _NT],
1493
+ [[() => __listOfAuthorizer, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1494
+ ];
1495
+ var GetDeploymentRequest$ = [3, n0, _GDR,
1496
+ 0,
1497
+ [_AI, _DI],
1498
+ [[0, 1], [0, 1]], 2
1499
+ ];
1500
+ var GetDeploymentResponse$ = [3, n0, _GDRe,
1501
+ 0,
1502
+ [_AD, _CD, _DI, _DS, _DSM, _D],
1503
+ [[2, { [_jN]: _aD }], [5, { [_jN]: _cD }], [0, { [_jN]: _dI }], [0, { [_jN]: _dS }], [0, { [_jN]: _dSM }], [0, { [_jN]: _d }]]
1504
+ ];
1505
+ var GetDeploymentsRequest$ = [3, n0, _GDRet,
1506
+ 0,
1507
+ [_AI, _MR, _NT],
1508
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1509
+ ];
1510
+ var GetDeploymentsResponse$ = [3, n0, _GDRete,
1511
+ 0,
1512
+ [_I, _NT],
1513
+ [[() => __listOfDeployment, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1514
+ ];
1515
+ var GetDomainNameRequest$ = [3, n0, _GDNR,
1516
+ 0,
1517
+ [_DN],
1518
+ [[0, 1]], 1
1519
+ ];
1520
+ var GetDomainNameResponse$ = [3, n0, _GDNRe,
1521
+ 0,
1522
+ [_AMSE, _DN, _DNA, _DNC, _MTA, _RM, _T],
1523
+ [[0, { [_jN]: _aMSE }], [0, { [_jN]: _dN }], [0, { [_jN]: _dNA }], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthentication$, { [_jN]: _mTA }], [0, { [_jN]: _rM }], [128 | 0, { [_jN]: _t }]]
1524
+ ];
1525
+ var GetDomainNamesRequest$ = [3, n0, _GDNRet,
1526
+ 0,
1527
+ [_MR, _NT],
1528
+ [[0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1529
+ ];
1530
+ var GetDomainNamesResponse$ = [3, n0, _GDNReto,
1531
+ 0,
1532
+ [_I, _NT],
1533
+ [[() => __listOfDomainName, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1534
+ ];
1535
+ var GetIntegrationRequest$ = [3, n0, _GIR,
1536
+ 0,
1537
+ [_AI, _IIn],
1538
+ [[0, 1], [0, 1]], 2
1539
+ ];
1540
+ var GetIntegrationResponseRequest$ = [3, n0, _GIRR,
1541
+ 0,
1542
+ [_AI, _IIn, _IRI],
1543
+ [[0, 1], [0, 1], [0, 1]], 3
1544
+ ];
1545
+ var GetIntegrationResponseResponse$ = [3, n0, _GIRRe,
1546
+ 0,
1547
+ [_CHS, _IRI, _IRK, _RPe, _RTes, _TSE],
1548
+ [[0, { [_jN]: _cHS }], [0, { [_jN]: _iRI }], [0, { [_jN]: _iRK }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]]
1549
+ ];
1550
+ var GetIntegrationResponsesRequest$ = [3, n0, _GIRRet,
1551
+ 0,
1552
+ [_AI, _IIn, _MR, _NT],
1553
+ [[0, 1], [0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1554
+ ];
1555
+ var GetIntegrationResponsesResponse$ = [3, n0, _GIRRetn,
1556
+ 0,
1557
+ [_I, _NT],
1558
+ [[() => __listOfIntegrationResponse, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1559
+ ];
1560
+ var GetIntegrationResult$ = [3, n0, _GIRe,
1561
+ 0,
1562
+ [_AGM, _CI, _CT, _CHS, _CAr, _D, _IIn, _IM, _IRSE, _ISn, _IT, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
1563
+ [[2, { [_jN]: _aGM }], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iIn }], [0, { [_jN]: _iM }], [0, { [_jN]: _iRSE }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iT }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfig$, { [_jN]: _tC }]]
1564
+ ];
1565
+ var GetIntegrationsRequest$ = [3, n0, _GIRet,
1566
+ 0,
1567
+ [_AI, _MR, _NT],
1568
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1569
+ ];
1570
+ var GetIntegrationsResponse$ = [3, n0, _GIRetn,
1571
+ 0,
1572
+ [_I, _NT],
1573
+ [[() => __listOfIntegration, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1574
+ ];
1575
+ var GetModelRequest$ = [3, n0, _GMR,
1576
+ 0,
1577
+ [_AI, _MI],
1578
+ [[0, 1], [0, 1]], 2
1579
+ ];
1580
+ var GetModelResponse$ = [3, n0, _GMRe,
1581
+ 0,
1582
+ [_CTo, _D, _MI, _N, _Sc],
1583
+ [[0, { [_jN]: _cTo }], [0, { [_jN]: _d }], [0, { [_jN]: _mI }], [0, { [_jN]: _n }], [0, { [_jN]: _sc }]]
1584
+ ];
1585
+ var GetModelsRequest$ = [3, n0, _GMRet,
1586
+ 0,
1587
+ [_AI, _MR, _NT],
1588
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1589
+ ];
1590
+ var GetModelsResponse$ = [3, n0, _GMReto,
1591
+ 0,
1592
+ [_I, _NT],
1593
+ [[() => __listOfModel, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1594
+ ];
1595
+ var GetModelTemplateRequest$ = [3, n0, _GMTR,
1596
+ 0,
1597
+ [_AI, _MI],
1598
+ [[0, 1], [0, 1]], 2
1599
+ ];
1600
+ var GetModelTemplateResponse$ = [3, n0, _GMTRe,
1601
+ 0,
1602
+ [_Va],
1603
+ [[0, { [_jN]: _va }]]
1604
+ ];
1605
+ var GetPortalProductRequest$ = [3, n0, _GPPR,
1606
+ 0,
1607
+ [_PPI, _ROAI],
1608
+ [[0, 1], [0, { [_hQ]: _rOAI }]], 1
1609
+ ];
1610
+ var GetPortalProductResponse$ = [3, n0, _GPPRe,
1611
+ 0,
1612
+ [_D, _DNi, _DO, _LM, _PPA, _PPI, _T],
1613
+ [[0, { [_jN]: _d }], [0, { [_jN]: _dNi }], [() => DisplayOrder$, { [_jN]: _dO }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPA }], [0, { [_jN]: _pPI }], [128 | 0, { [_jN]: _t }]]
1614
+ ];
1615
+ var GetPortalProductSharingPolicyRequest$ = [3, n0, _GPPSPR,
1616
+ 0,
1617
+ [_PPI],
1618
+ [[0, 1]], 1
1619
+ ];
1620
+ var GetPortalProductSharingPolicyResponse$ = [3, n0, _GPPSPRe,
1621
+ 0,
1622
+ [_PD, _PPI],
1623
+ [[0, { [_jN]: _pD }], [0, { [_jN]: _pPI }]]
1624
+ ];
1625
+ var GetPortalRequest$ = [3, n0, _GPR,
1626
+ 0,
1627
+ [_PI],
1628
+ [[0, 1]], 1
1629
+ ];
1630
+ var GetPortalResponse$ = [3, n0, _GPRe,
1631
+ 0,
1632
+ [_Au, _EC, _IPPA, _LM, _LP, _LPD, _PA, _PC, _PI, _Pr, _PS, _RAMN, _SE, _T],
1633
+ [[() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationResponse$, { [_jN]: _eC }], [64 | 0, { [_jN]: _iPPA }], [5, { [_jN]: _lM }], [5, { [_jN]: _lP }], [0, { [_jN]: _lPD }], [0, { [_jN]: _pA }], [() => PortalContent$, { [_jN]: _pC }], [0, { [_jN]: _pI }], [() => Preview$, { [_jN]: _pr }], [0, { [_jN]: _pS }], [0, { [_jN]: _rAMN }], [() => StatusException$, { [_jN]: _sE }], [128 | 0, { [_jN]: _t }]]
1634
+ ];
1635
+ var GetProductPageRequest$ = [3, n0, _GPPRet,
1636
+ 0,
1637
+ [_PPI, _PPIr, _ROAI],
1638
+ [[0, 1], [0, 1], [0, { [_hQ]: _rOAI }]], 2
1639
+ ];
1640
+ var GetProductPageResponse$ = [3, n0, _GPPRetr,
1641
+ 0,
1642
+ [_DC, _LM, _PPAr, _PPIr],
1643
+ [[() => DisplayContent$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPAr }], [0, { [_jN]: _pPIr }]]
1644
+ ];
1645
+ var GetProductRestEndpointPageRequest$ = [3, n0, _GPREPR,
1646
+ 0,
1647
+ [_PPI, _PREPI, _IRDC, _ROAI],
1648
+ [[0, 1], [0, 1], [0, { [_hQ]: _iRDC }], [0, { [_hQ]: _rOAI }]], 2
1649
+ ];
1650
+ var GetProductRestEndpointPageResponse$ = [3, n0, _GPREPRe,
1651
+ 0,
1652
+ [_DC, _LM, _PREPA, _PREPI, _RDC, _REI, _St, _SE, _TIS],
1653
+ [[() => EndpointDisplayContentResponse$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pREPA }], [0, { [_jN]: _pREPI }], [0, { [_jN]: _rDC }], [() => RestEndpointIdentifier$, { [_jN]: _rEI }], [0, { [_jN]: _sta }], [() => StatusException$, { [_jN]: _sE }], [0, { [_jN]: _tIS }]]
1654
+ ];
1655
+ var GetRouteRequest$ = [3, n0, _GRR,
1656
+ 0,
1657
+ [_AI, _RI],
1658
+ [[0, 1], [0, 1]], 2
1659
+ ];
1660
+ var GetRouteResponseRequest$ = [3, n0, _GRRR,
1661
+ 0,
1662
+ [_AI, _RI, _RRI],
1663
+ [[0, 1], [0, 1], [0, 1]], 3
1664
+ ];
1665
+ var GetRouteResponseResponse$ = [3, n0, _GRRRe,
1666
+ 0,
1667
+ [_MSE, _RMes, _RPe, _RRI, _RRK],
1668
+ [[0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }], [0, { [_jN]: _rRI }], [0, { [_jN]: _rRK }]]
1669
+ ];
1670
+ var GetRouteResponsesRequest$ = [3, n0, _GRRRet,
1671
+ 0,
1672
+ [_AI, _RI, _MR, _NT],
1673
+ [[0, 1], [0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1674
+ ];
1675
+ var GetRouteResponsesResponse$ = [3, n0, _GRRReto,
1676
+ 0,
1677
+ [_I, _NT],
1678
+ [[() => __listOfRouteResponse, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1679
+ ];
1680
+ var GetRouteResult$ = [3, n0, _GRRe,
1681
+ 0,
1682
+ [_AGM, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RI, _RK, _RRSE, _Ta],
1683
+ [[2, { [_jN]: _aGM }], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rI }], [0, { [_jN]: _rK }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]]
1684
+ ];
1685
+ var GetRoutesRequest$ = [3, n0, _GRRet,
1686
+ 0,
1687
+ [_AI, _MR, _NT],
1688
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1689
+ ];
1690
+ var GetRoutesResponse$ = [3, n0, _GRReto,
1691
+ 0,
1692
+ [_I, _NT],
1693
+ [[() => __listOfRoute, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1694
+ ];
1695
+ var GetRoutingRuleRequest$ = [3, n0, _GRRRetou,
1696
+ 0,
1697
+ [_DN, _RRIo, _DNI],
1698
+ [[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
1699
+ ];
1700
+ var GetRoutingRuleResponse$ = [3, n0, _GRRRetout,
1701
+ 0,
1702
+ [_Ac, _Co, _P, _RRA, _RRIo],
1703
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [1, { [_jN]: _p }], [0, { [_jN]: _rRA }], [0, { [_jN]: _rRIo }]]
1704
+ ];
1705
+ var GetStageRequest$ = [3, n0, _GSR,
1706
+ 0,
1707
+ [_AI, _SN],
1708
+ [[0, 1], [0, 1]], 2
1709
+ ];
1710
+ var GetStageResponse$ = [3, n0, _GSRe,
1711
+ 0,
1712
+ [_ALS, _AGM, _ADu, _CCI, _CD, _DRS, _DI, _D, _LDSM, _LUD, _RS, _SN, _SV, _T],
1713
+ [[() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aGM }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [5, { [_jN]: _cD }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [0, { [_jN]: _lDSM }], [5, { [_jN]: _lUD }], [() => RouteSettingsMap, { [_jN]: _rS }], [0, { [_jN]: _sN }], [128 | 0, { [_jN]: _sV }], [128 | 0, { [_jN]: _t }]]
1714
+ ];
1715
+ var GetStagesRequest$ = [3, n0, _GSRet,
1716
+ 0,
1717
+ [_AI, _MR, _NT],
1718
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1719
+ ];
1720
+ var GetStagesResponse$ = [3, n0, _GSRett,
1721
+ 0,
1722
+ [_I, _NT],
1723
+ [[() => __listOfStage, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1724
+ ];
1725
+ var GetTagsRequest$ = [3, n0, _GTR,
1726
+ 0,
1727
+ [_RA],
1728
+ [[0, 1]], 1
1729
+ ];
1730
+ var GetTagsResponse$ = [3, n0, _GTRe,
1731
+ 0,
1732
+ [_T],
1733
+ [[128 | 0, { [_jN]: _t }]]
1734
+ ];
1735
+ var GetVpcLinkRequest$ = [3, n0, _GVLR,
1736
+ 0,
1737
+ [_VLI],
1738
+ [[0, 1]], 1
1739
+ ];
1740
+ var GetVpcLinkResponse$ = [3, n0, _GVLRe,
1741
+ 0,
1742
+ [_CD, _N, _SGI, _SI, _T, _VLI, _VLS, _VLSM, _VLV],
1743
+ [[5, { [_jN]: _cD }], [0, { [_jN]: _n }], [64 | 0, { [_jN]: _sGI }], [64 | 0, { [_jN]: _sI }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _vLI }], [0, { [_jN]: _vLS }], [0, { [_jN]: _vLSM }], [0, { [_jN]: _vLV }]]
1744
+ ];
1745
+ var GetVpcLinksRequest$ = [3, n0, _GVLRet,
1746
+ 0,
1747
+ [_MR, _NT],
1748
+ [[0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1749
+ ];
1750
+ var GetVpcLinksResponse$ = [3, n0, _GVLRetp,
1751
+ 0,
1752
+ [_I, _NT],
1753
+ [[() => __listOfVpcLink, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1754
+ ];
1755
+ var IdentifierParts$ = [3, n0, _IP,
1756
+ 0,
1757
+ [_Me, _Pa, _RAI, _S],
1758
+ [[0, { [_jN]: _me }], [0, { [_jN]: _pa }], [0, { [_jN]: _rAI }], [0, { [_jN]: _st }]], 4
1759
+ ];
1760
+ var ImportApiRequest$ = [3, n0, _IAR,
1761
+ 0,
1762
+ [_B, _Ba, _FOW],
1763
+ [[0, { [_jN]: _b }], [0, { [_hQ]: _ba }], [2, { [_hQ]: _fOW }]], 1
1764
+ ];
1765
+ var ImportApiResponse$ = [3, n0, _IARm,
1766
+ 0,
1767
+ [_AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _N, _PT, _RSE, _T, _V, _W],
1768
+ [[0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]]
1769
+ ];
1770
+ var Integration$ = [3, n0, _In,
1771
+ 0,
1772
+ [_AGM, _CI, _CT, _CHS, _CAr, _D, _IIn, _IM, _IRSE, _ISn, _IT, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
1773
+ [[2, { [_jN]: _aGM }], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iIn }], [0, { [_jN]: _iM }], [0, { [_jN]: _iRSE }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iT }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfig$, { [_jN]: _tC }]]
1774
+ ];
1775
+ var IntegrationResponse$ = [3, n0, _IR,
1776
+ 0,
1777
+ [_IRK, _CHS, _IRI, _RPe, _RTes, _TSE],
1778
+ [[0, { [_jN]: _iRK }], [0, { [_jN]: _cHS }], [0, { [_jN]: _iRI }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]], 1
1779
+ ];
1780
+ var JWTConfiguration$ = [3, n0, _JWTC,
1781
+ 0,
1782
+ [_Aud, _Is],
1783
+ [[64 | 0, { [_jN]: _au }], [0, { [_jN]: _is }]]
1784
+ ];
1785
+ var ListPortalProductsRequest$ = [3, n0, _LPPR,
1786
+ 0,
1787
+ [_MR, _NT, _RO],
1788
+ [[0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _rO }]]
1789
+ ];
1790
+ var ListPortalProductsResponse$ = [3, n0, _LPPRi,
1791
+ 0,
1792
+ [_I, _NT],
1793
+ [[() => __listOfPortalProductSummary, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1794
+ ];
1795
+ var ListPortalsRequest$ = [3, n0, _LPR,
1796
+ 0,
1797
+ [_MR, _NT],
1798
+ [[0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1799
+ ];
1800
+ var ListPortalsResponse$ = [3, n0, _LPRi,
1801
+ 0,
1802
+ [_I, _NT],
1803
+ [[() => __listOfPortalSummary, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1804
+ ];
1805
+ var ListProductPagesRequest$ = [3, n0, _LPPRis,
1806
+ 0,
1807
+ [_PPI, _MR, _NT, _ROAI],
1808
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _rOAI }]], 1
1809
+ ];
1810
+ var ListProductPagesResponse$ = [3, n0, _LPPRist,
1811
+ 0,
1812
+ [_I, _NT],
1813
+ [[() => __listOfProductPageSummaryNoBody, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1814
+ ];
1815
+ var ListProductRestEndpointPagesRequest$ = [3, n0, _LPREPR,
1816
+ 0,
1817
+ [_PPI, _MR, _NT, _ROAI],
1818
+ [[0, 1], [0, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _rOAI }]], 1
1819
+ ];
1820
+ var ListProductRestEndpointPagesResponse$ = [3, n0, _LPREPRi,
1821
+ 0,
1822
+ [_I, _NT],
1823
+ [[() => __listOfProductRestEndpointPageSummaryNoBody, { [_jN]: _i }], [0, { [_jN]: _nT }]]
1824
+ ];
1825
+ var ListRoutingRulesRequest$ = [3, n0, _LRRR,
1826
+ 0,
1827
+ [_DN, _DNI, _MR, _NT],
1828
+ [[0, 1], [0, { [_hQ]: _dNI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1829
+ ];
1830
+ var ListRoutingRulesResponse$ = [3, n0, _LRRRi,
1831
+ 0,
1832
+ [_NT, _RR],
1833
+ [[0, { [_jN]: _nT }], [() => __listOfRoutingRule, { [_jN]: _rR }]]
1834
+ ];
1835
+ var Model$ = [3, n0, _Mo,
1836
+ 0,
1837
+ [_N, _CTo, _D, _MI, _Sc],
1838
+ [[0, { [_jN]: _n }], [0, { [_jN]: _cTo }], [0, { [_jN]: _d }], [0, { [_jN]: _mI }], [0, { [_jN]: _sc }]], 1
1839
+ ];
1840
+ var MutualTlsAuthentication$ = [3, n0, _MTA,
1841
+ 0,
1842
+ [_TU, _TV, _TW],
1843
+ [[0, { [_jN]: _tU }], [0, { [_jN]: _tV }], [64 | 0, { [_jN]: _tW }]]
1844
+ ];
1845
+ var MutualTlsAuthenticationInput$ = [3, n0, _MTAI,
1846
+ 0,
1847
+ [_TU, _TV],
1848
+ [[0, { [_jN]: _tU }], [0, { [_jN]: _tV }]]
1849
+ ];
1850
+ var None$ = [3, n0, _No,
1851
+ 0,
1852
+ [],
1853
+ []
1854
+ ];
1855
+ var ParameterConstraints$ = [3, n0, _PCa,
1856
+ 0,
1857
+ [_R],
1858
+ [[2, { [_jN]: _r }]]
1859
+ ];
1860
+ var PortalContent$ = [3, n0, _PC,
1861
+ 0,
1862
+ [_DNi, _Th, _D],
1863
+ [[0, { [_jN]: _dNi }], [() => PortalTheme$, { [_jN]: _th }], [0, { [_jN]: _d }]], 2
1864
+ ];
1865
+ var PortalProductSummary$ = [3, n0, _PPS,
1866
+ 0,
1867
+ [_D, _DNi, _LM, _PPA, _PPI, _T],
1868
+ [[0, { [_jN]: _d }], [0, { [_jN]: _dNi }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPA }], [0, { [_jN]: _pPI }], [128 | 0, { [_jN]: _t }]], 5
1869
+ ];
1870
+ var PortalSummary$ = [3, n0, _PSo,
1871
+ 0,
1872
+ [_Au, _EC, _IPPA, _LM, _PA, _PC, _PI, _LP, _LPD, _Pr, _PS, _RAMN, _SE, _T],
1873
+ [[() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationResponse$, { [_jN]: _eC }], [64 | 0, { [_jN]: _iPPA }], [5, { [_jN]: _lM }], [0, { [_jN]: _pA }], [() => PortalContent$, { [_jN]: _pC }], [0, { [_jN]: _pI }], [5, { [_jN]: _lP }], [0, { [_jN]: _lPD }], [() => Preview$, { [_jN]: _pr }], [0, { [_jN]: _pS }], [0, { [_jN]: _rAMN }], [() => StatusException$, { [_jN]: _sE }], [128 | 0, { [_jN]: _t }]], 7
1874
+ ];
1875
+ var PortalTheme$ = [3, n0, _PTo,
1876
+ 0,
1877
+ [_CCu, _LLU],
1878
+ [[() => CustomColors$, { [_jN]: _cCu }], [5, { [_jN]: _lLU }]], 1
1879
+ ];
1880
+ var Preview$ = [3, n0, _Pr,
1881
+ 0,
1882
+ [_PSr, _PU, _SE],
1883
+ [[0, { [_jN]: _pSr }], [0, { [_jN]: _pU }], [() => StatusException$, { [_jN]: _sE }]], 1
1884
+ ];
1885
+ var PreviewPortalRequest$ = [3, n0, _PPR,
1886
+ 0,
1887
+ [_PI],
1888
+ [[0, 1]], 1
1889
+ ];
1890
+ var PreviewPortalResponse$ = [3, n0, _PPRr,
1891
+ 0,
1892
+ [],
1893
+ []
1894
+ ];
1895
+ var ProductPageSummaryNoBody$ = [3, n0, _PPSNB,
1896
+ 0,
1897
+ [_LM, _PTa, _PPAr, _PPIr],
1898
+ [[5, { [_jN]: _lM }], [0, { [_jN]: _pTa }], [0, { [_jN]: _pPAr }], [0, { [_jN]: _pPIr }]], 4
1899
+ ];
1900
+ var ProductRestEndpointPageSummaryNoBody$ = [3, n0, _PREPSNB,
1901
+ 0,
1902
+ [_E, _LM, _PREPA, _PREPI, _REI, _St, _TIS, _ON, _SE],
1903
+ [[0, { [_jN]: _en }], [5, { [_jN]: _lM }], [0, { [_jN]: _pREPA }], [0, { [_jN]: _pREPI }], [() => RestEndpointIdentifier$, { [_jN]: _rEI }], [0, { [_jN]: _sta }], [0, { [_jN]: _tIS }], [0, { [_jN]: _oN }], [() => StatusException$, { [_jN]: _sE }]], 7
1904
+ ];
1905
+ var PublishPortalRequest$ = [3, n0, _PPRu,
1906
+ 0,
1907
+ [_PI, _D],
1908
+ [[0, 1], [0, { [_jN]: _d }]], 1
1909
+ ];
1910
+ var PublishPortalResponse$ = [3, n0, _PPRub,
1911
+ 0,
1912
+ [],
1913
+ []
1914
+ ];
1915
+ var PutPortalProductSharingPolicyRequest$ = [3, n0, _PPPSPR,
1916
+ 0,
1917
+ [_PD, _PPI],
1918
+ [[0, { [_jN]: _pD }], [0, 1]], 2
1919
+ ];
1920
+ var PutPortalProductSharingPolicyResponse$ = [3, n0, _PPPSPRu,
1921
+ 0,
1922
+ [],
1923
+ []
1924
+ ];
1925
+ var PutRoutingRuleRequest$ = [3, n0, _PRRR,
1926
+ 0,
1927
+ [_Ac, _Co, _DN, _P, _RRIo, _DNI],
1928
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [0, 1], [1, { [_jN]: _p }], [0, 1], [0, { [_hQ]: _dNI }]], 5
1929
+ ];
1930
+ var PutRoutingRuleResponse$ = [3, n0, _PRRRu,
1931
+ 0,
1932
+ [_Ac, _Co, _P, _RRA, _RRIo],
1933
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [1, { [_jN]: _p }], [0, { [_jN]: _rRA }], [0, { [_jN]: _rRIo }]]
1934
+ ];
1935
+ var ReimportApiRequest$ = [3, n0, _RAR,
1936
+ 0,
1937
+ [_AI, _B, _Ba, _FOW],
1938
+ [[0, 1], [0, { [_jN]: _b }], [0, { [_hQ]: _ba }], [2, { [_hQ]: _fOW }]], 2
1939
+ ];
1940
+ var ReimportApiResponse$ = [3, n0, _RARe,
1941
+ 0,
1942
+ [_AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _N, _PT, _RSE, _T, _V, _W],
1943
+ [[0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]]
1944
+ ];
1945
+ var ResetAuthorizersCacheRequest$ = [3, n0, _RACR,
1946
+ 0,
1947
+ [_AI, _SN],
1948
+ [[0, 1], [0, 1]], 2
1949
+ ];
1950
+ var RestEndpointIdentifier$ = [3, n0, _REI,
1951
+ 0,
1952
+ [_IP],
1953
+ [[() => IdentifierParts$, { [_jN]: _iP }]]
1954
+ ];
1955
+ var Route$ = [3, n0, _Ro,
1956
+ 0,
1957
+ [_RK, _AGM, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RI, _RRSE, _Ta],
1958
+ [[0, { [_jN]: _rK }], [2, { [_jN]: _aGM }], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rI }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]], 1
1959
+ ];
1960
+ var RouteResponse$ = [3, n0, _RRo,
1961
+ 0,
1962
+ [_RRK, _MSE, _RMes, _RPe, _RRI],
1963
+ [[0, { [_jN]: _rRK }], [0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }], [0, { [_jN]: _rRI }]], 1
1964
+ ];
1965
+ var RouteSettings$ = [3, n0, _RS,
1966
+ 0,
1967
+ [_DTE, _DME, _LL, _TBL, _TRL],
1968
+ [[2, { [_jN]: _dTE }], [2, { [_jN]: _dME }], [0, { [_jN]: _lL }], [1, { [_jN]: _tBL }], [1, { [_jN]: _tRL }]]
1969
+ ];
1970
+ var RoutingRule$ = [3, n0, _RRou,
1971
+ 0,
1972
+ [_Ac, _Co, _P, _RRA, _RRIo],
1973
+ [[() => __listOfRoutingRuleAction, { [_jN]: _ac }], [() => __listOfRoutingRuleCondition, { [_jN]: _co }], [1, { [_jN]: _p }], [0, { [_jN]: _rRA }], [0, { [_jN]: _rRIo }]]
1974
+ ];
1975
+ var RoutingRuleAction$ = [3, n0, _RRAo,
1976
+ 0,
1977
+ [_IA],
1978
+ [[() => RoutingRuleActionInvokeApi$, { [_jN]: _iA }]], 1
1979
+ ];
1980
+ var RoutingRuleActionInvokeApi$ = [3, n0, _RRAIA,
1981
+ 0,
1982
+ [_AI, _S, _SBP],
1983
+ [[0, { [_jN]: _aI }], [0, { [_jN]: _st }], [2, { [_jN]: _sBP }]], 2
1984
+ ];
1985
+ var RoutingRuleCondition$ = [3, n0, _RRC,
1986
+ 0,
1987
+ [_MBP, _MH],
1988
+ [[() => RoutingRuleMatchBasePaths$, { [_jN]: _mBP }], [() => RoutingRuleMatchHeaders$, { [_jN]: _mH }]]
1989
+ ];
1990
+ var RoutingRuleMatchBasePaths$ = [3, n0, _RRMBP,
1991
+ 0,
1992
+ [_AOn],
1993
+ [[64 | 0, { [_jN]: _aOn }]], 1
1994
+ ];
1995
+ var RoutingRuleMatchHeaders$ = [3, n0, _RRMH,
1996
+ 0,
1997
+ [_AOn],
1998
+ [[() => __listOfRoutingRuleMatchHeaderValue, { [_jN]: _aOn }]], 1
1999
+ ];
2000
+ var RoutingRuleMatchHeaderValue$ = [3, n0, _RRMHV,
2001
+ 0,
2002
+ [_H, _VG],
2003
+ [[0, { [_jN]: _h }], [0, { [_jN]: _vG }]], 2
2004
+ ];
2005
+ var Section$ = [3, n0, _Se,
2006
+ 0,
2007
+ [_PREPAr, _SNe],
2008
+ [[64 | 0, { [_jN]: _pREPAr }], [0, { [_jN]: _sNe }]], 2
2009
+ ];
2010
+ var Stage$ = [3, n0, _S,
2011
+ 0,
2012
+ [_SN, _ALS, _AGM, _ADu, _CCI, _CD, _DRS, _DI, _D, _LDSM, _LUD, _RS, _SV, _T],
2013
+ [[0, { [_jN]: _sN }], [() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aGM }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [5, { [_jN]: _cD }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [0, { [_jN]: _lDSM }], [5, { [_jN]: _lUD }], [() => RouteSettingsMap, { [_jN]: _rS }], [128 | 0, { [_jN]: _sV }], [128 | 0, { [_jN]: _t }]], 1
2014
+ ];
2015
+ var StatusException$ = [3, n0, _SE,
2016
+ 0,
2017
+ [_Ex, _M],
2018
+ [[0, { [_jN]: _ex }], [0, { [_jN]: _m }]]
2019
+ ];
2020
+ var TagResourceRequest$ = [3, n0, _TRR,
2021
+ 0,
2022
+ [_RA, _T],
2023
+ [[0, 1], [128 | 0, { [_jN]: _t }]], 1
2024
+ ];
2025
+ var TagResourceResponse$ = [3, n0, _TRRa,
2026
+ 0,
2027
+ [],
2028
+ []
2029
+ ];
2030
+ var TlsConfig$ = [3, n0, _TC,
2031
+ 0,
2032
+ [_SNTV],
2033
+ [[0, { [_jN]: _sNTV }]]
2034
+ ];
2035
+ var TlsConfigInput$ = [3, n0, _TCI,
2036
+ 0,
2037
+ [_SNTV],
2038
+ [[0, { [_jN]: _sNTV }]]
2039
+ ];
2040
+ var UntagResourceRequest$ = [3, n0, _URR,
2041
+ 0,
2042
+ [_RA, _TK],
2043
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
2044
+ ];
2045
+ var UpdateApiMappingRequest$ = [3, n0, _UAMR,
2046
+ 0,
2047
+ [_AI, _AMI, _DN, _AMK, _S],
2048
+ [[0, { [_jN]: _aI }], [0, 1], [0, 1], [0, { [_jN]: _aMK }], [0, { [_jN]: _st }]], 3
2049
+ ];
2050
+ var UpdateApiMappingResponse$ = [3, n0, _UAMRp,
2051
+ 0,
2052
+ [_AI, _AMI, _AMK, _S],
2053
+ [[0, { [_jN]: _aI }], [0, { [_jN]: _aMI }], [0, { [_jN]: _aMK }], [0, { [_jN]: _st }]]
2054
+ ];
2055
+ var UpdateApiRequest$ = [3, n0, _UAR,
2056
+ 0,
2057
+ [_AI, _AKSE, _CC, _CAr, _D, _DSV, _DEAE, _IAT, _N, _RK, _RSE, _Ta, _V],
2058
+ [[0, 1], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _rK }], [0, { [_jN]: _rSE }], [0, { [_jN]: _ta }], [0, { [_jN]: _v }]], 1
2059
+ ];
2060
+ var UpdateApiResponse$ = [3, n0, _UARp,
2061
+ 0,
2062
+ [_AE, _AGM, _AI, _AKSE, _CC, _CD, _D, _DSV, _DEAE, _II, _IAT, _N, _PT, _RSE, _T, _V, _W],
2063
+ [[0, { [_jN]: _aE }], [2, { [_jN]: _aGM }], [0, { [_jN]: _aI }], [0, { [_jN]: _aKSE }], [() => Cors$, { [_jN]: _cC }], [5, { [_jN]: _cD }], [0, { [_jN]: _d }], [2, { [_jN]: _dSV }], [2, { [_jN]: _dEAE }], [64 | 0, { [_jN]: _iI }], [0, { [_jN]: _iAT }], [0, { [_jN]: _n }], [0, { [_jN]: _pT }], [0, { [_jN]: _rSE }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _v }], [64 | 0, { [_jN]: _w }]]
2064
+ ];
2065
+ var UpdateAuthorizerRequest$ = [3, n0, _UARpd,
2066
+ 0,
2067
+ [_AI, _AIu, _ACA, _APFV, _ARTIS, _AT, _AU, _ESR, _IS, _IVE, _JC, _N],
2068
+ [[0, 1], [0, 1], [0, { [_jN]: _aCA }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aT }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }], [0, { [_jN]: _n }]], 2
2069
+ ];
2070
+ var UpdateAuthorizerResponse$ = [3, n0, _UARpda,
2071
+ 0,
2072
+ [_ACA, _AIu, _APFV, _ARTIS, _AT, _AU, _ESR, _IS, _IVE, _JC, _N],
2073
+ [[0, { [_jN]: _aCA }], [0, { [_jN]: _aIu }], [0, { [_jN]: _aPFV }], [1, { [_jN]: _aRTIS }], [0, { [_jN]: _aT }], [0, { [_jN]: _aU }], [2, { [_jN]: _eSR }], [64 | 0, { [_jN]: _iS }], [0, { [_jN]: _iVE }], [() => JWTConfiguration$, { [_jN]: _jC }], [0, { [_jN]: _n }]]
2074
+ ];
2075
+ var UpdateDeploymentRequest$ = [3, n0, _UDR,
2076
+ 0,
2077
+ [_AI, _DI, _D],
2078
+ [[0, 1], [0, 1], [0, { [_jN]: _d }]], 2
2079
+ ];
2080
+ var UpdateDeploymentResponse$ = [3, n0, _UDRp,
2081
+ 0,
2082
+ [_AD, _CD, _DI, _DS, _DSM, _D],
2083
+ [[2, { [_jN]: _aD }], [5, { [_jN]: _cD }], [0, { [_jN]: _dI }], [0, { [_jN]: _dS }], [0, { [_jN]: _dSM }], [0, { [_jN]: _d }]]
2084
+ ];
2085
+ var UpdateDomainNameRequest$ = [3, n0, _UDNR,
2086
+ 0,
2087
+ [_DN, _DNC, _MTA, _RM],
2088
+ [[0, 1], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthenticationInput$, { [_jN]: _mTA }], [0, { [_jN]: _rM }]], 1
2089
+ ];
2090
+ var UpdateDomainNameResponse$ = [3, n0, _UDNRp,
2091
+ 0,
2092
+ [_AMSE, _DN, _DNA, _DNC, _MTA, _RM, _T],
2093
+ [[0, { [_jN]: _aMSE }], [0, { [_jN]: _dN }], [0, { [_jN]: _dNA }], [() => DomainNameConfigurations, { [_jN]: _dNC }], [() => MutualTlsAuthentication$, { [_jN]: _mTA }], [0, { [_jN]: _rM }], [128 | 0, { [_jN]: _t }]]
2094
+ ];
2095
+ var UpdateIntegrationRequest$ = [3, n0, _UIR,
2096
+ 0,
2097
+ [_AI, _IIn, _CI, _CT, _CHS, _CAr, _D, _IM, _ISn, _IT, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
2098
+ [[0, 1], [0, 1], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iM }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iT }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfigInput$, { [_jN]: _tC }]], 2
2099
+ ];
2100
+ var UpdateIntegrationResponseRequest$ = [3, n0, _UIRR,
2101
+ 0,
2102
+ [_AI, _IIn, _IRI, _CHS, _IRK, _RPe, _RTes, _TSE],
2103
+ [[0, 1], [0, 1], [0, 1], [0, { [_jN]: _cHS }], [0, { [_jN]: _iRK }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]], 3
2104
+ ];
2105
+ var UpdateIntegrationResponseResponse$ = [3, n0, _UIRRp,
2106
+ 0,
2107
+ [_CHS, _IRI, _IRK, _RPe, _RTes, _TSE],
2108
+ [[0, { [_jN]: _cHS }], [0, { [_jN]: _iRI }], [0, { [_jN]: _iRK }], [128 | 0, { [_jN]: _rPe }], [128 | 0, { [_jN]: _rTes }], [0, { [_jN]: _tSE }]]
2109
+ ];
2110
+ var UpdateIntegrationResult$ = [3, n0, _UIRp,
2111
+ 0,
2112
+ [_AGM, _CI, _CT, _CHS, _CAr, _D, _IIn, _IM, _IRSE, _ISn, _IT, _IU, _PB, _PFV, _RP, _RTe, _RPe, _TSE, _TIM, _TC],
2113
+ [[2, { [_jN]: _aGM }], [0, { [_jN]: _cI }], [0, { [_jN]: _cT }], [0, { [_jN]: _cHS }], [0, { [_jN]: _cAr }], [0, { [_jN]: _d }], [0, { [_jN]: _iIn }], [0, { [_jN]: _iM }], [0, { [_jN]: _iRSE }], [0, { [_jN]: _iSn }], [0, { [_jN]: _iT }], [0, { [_jN]: _iU }], [0, { [_jN]: _pB }], [0, { [_jN]: _pFV }], [128 | 0, { [_jN]: _rP }], [128 | 0, { [_jN]: _rTe }], [[2, n0, _RPe, 0, 0, 128 | 0], { [_jN]: _rPe }], [0, { [_jN]: _tSE }], [1, { [_jN]: _tIM }], [() => TlsConfig$, { [_jN]: _tC }]]
2114
+ ];
2115
+ var UpdateModelRequest$ = [3, n0, _UMR,
2116
+ 0,
2117
+ [_AI, _MI, _CTo, _D, _N, _Sc],
2118
+ [[0, 1], [0, 1], [0, { [_jN]: _cTo }], [0, { [_jN]: _d }], [0, { [_jN]: _n }], [0, { [_jN]: _sc }]], 2
2119
+ ];
2120
+ var UpdateModelResponse$ = [3, n0, _UMRp,
2121
+ 0,
2122
+ [_CTo, _D, _MI, _N, _Sc],
2123
+ [[0, { [_jN]: _cTo }], [0, { [_jN]: _d }], [0, { [_jN]: _mI }], [0, { [_jN]: _n }], [0, { [_jN]: _sc }]]
2124
+ ];
2125
+ var UpdatePortalProductRequest$ = [3, n0, _UPPR,
2126
+ 0,
2127
+ [_PPI, _D, _DNi, _DO],
2128
+ [[0, 1], [0, { [_jN]: _d }], [0, { [_jN]: _dNi }], [() => DisplayOrder$, { [_jN]: _dO }]], 1
2129
+ ];
2130
+ var UpdatePortalProductResponse$ = [3, n0, _UPPRp,
2131
+ 0,
2132
+ [_D, _DNi, _DO, _LM, _PPA, _PPI, _T],
2133
+ [[0, { [_jN]: _d }], [0, { [_jN]: _dNi }], [() => DisplayOrder$, { [_jN]: _dO }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPA }], [0, { [_jN]: _pPI }], [128 | 0, { [_jN]: _t }]]
2134
+ ];
2135
+ var UpdatePortalRequest$ = [3, n0, _UPR,
2136
+ 0,
2137
+ [_PI, _Au, _EC, _IPPA, _LU, _PC, _RAMN],
2138
+ [[0, 1], [() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationRequest$, { [_jN]: _eC }], [64 | 0, { [_jN]: _iPPA }], [0, { [_jN]: _lU }], [() => PortalContent$, { [_jN]: _pC }], [0, { [_jN]: _rAMN }]], 1
2139
+ ];
2140
+ var UpdatePortalResponse$ = [3, n0, _UPRp,
2141
+ 0,
2142
+ [_Au, _EC, _IPPA, _LM, _LP, _LPD, _PA, _PC, _PI, _Pr, _PS, _RAMN, _SE, _T],
2143
+ [[() => Authorization$, { [_jN]: _a }], [() => EndpointConfigurationResponse$, { [_jN]: _eC }], [64 | 0, { [_jN]: _iPPA }], [5, { [_jN]: _lM }], [5, { [_jN]: _lP }], [0, { [_jN]: _lPD }], [0, { [_jN]: _pA }], [() => PortalContent$, { [_jN]: _pC }], [0, { [_jN]: _pI }], [() => Preview$, { [_jN]: _pr }], [0, { [_jN]: _pS }], [0, { [_jN]: _rAMN }], [() => StatusException$, { [_jN]: _sE }], [128 | 0, { [_jN]: _t }]]
2144
+ ];
2145
+ var UpdateProductPageRequest$ = [3, n0, _UPPRpd,
2146
+ 0,
2147
+ [_PPI, _PPIr, _DC],
2148
+ [[0, 1], [0, 1], [() => DisplayContent$, { [_jN]: _dC }]], 2
2149
+ ];
2150
+ var UpdateProductPageResponse$ = [3, n0, _UPPRpda,
2151
+ 0,
2152
+ [_DC, _LM, _PPAr, _PPIr],
2153
+ [[() => DisplayContent$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pPAr }], [0, { [_jN]: _pPIr }]]
2154
+ ];
2155
+ var UpdateProductRestEndpointPageRequest$ = [3, n0, _UPREPR,
2156
+ 0,
2157
+ [_PPI, _PREPI, _DC, _TIS],
2158
+ [[0, 1], [0, 1], [() => EndpointDisplayContent$, { [_jN]: _dC }], [0, { [_jN]: _tIS }]], 2
2159
+ ];
2160
+ var UpdateProductRestEndpointPageResponse$ = [3, n0, _UPREPRp,
2161
+ 0,
2162
+ [_DC, _LM, _PREPA, _PREPI, _REI, _St, _SE, _TIS],
2163
+ [[() => EndpointDisplayContentResponse$, { [_jN]: _dC }], [5, { [_jN]: _lM }], [0, { [_jN]: _pREPA }], [0, { [_jN]: _pREPI }], [() => RestEndpointIdentifier$, { [_jN]: _rEI }], [0, { [_jN]: _sta }], [() => StatusException$, { [_jN]: _sE }], [0, { [_jN]: _tIS }]]
2164
+ ];
2165
+ var UpdateRouteRequest$ = [3, n0, _URRp,
2166
+ 0,
2167
+ [_AI, _RI, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RK, _RRSE, _Ta],
2168
+ [[0, 1], [0, 1], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rK }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]], 2
2169
+ ];
2170
+ var UpdateRouteResponseRequest$ = [3, n0, _URRR,
2171
+ 0,
2172
+ [_AI, _RI, _RRI, _MSE, _RMes, _RPe, _RRK],
2173
+ [[0, 1], [0, 1], [0, 1], [0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }], [0, { [_jN]: _rRK }]], 3
2174
+ ];
2175
+ var UpdateRouteResponseResponse$ = [3, n0, _URRRp,
2176
+ 0,
2177
+ [_MSE, _RMes, _RPe, _RRI, _RRK],
2178
+ [[0, { [_jN]: _mSE }], [128 | 0, { [_jN]: _rMes }], [() => RouteParameters, { [_jN]: _rPe }], [0, { [_jN]: _rRI }], [0, { [_jN]: _rRK }]]
2179
+ ];
2180
+ var UpdateRouteResult$ = [3, n0, _URRpd,
2181
+ 0,
2182
+ [_AGM, _AKR, _AS, _ATu, _AIu, _MSE, _ON, _RMe, _RP, _RI, _RK, _RRSE, _Ta],
2183
+ [[2, { [_jN]: _aGM }], [2, { [_jN]: _aKR }], [64 | 0, { [_jN]: _aS }], [0, { [_jN]: _aTu }], [0, { [_jN]: _aIu }], [0, { [_jN]: _mSE }], [0, { [_jN]: _oN }], [128 | 0, { [_jN]: _rMe }], [() => RouteParameters, { [_jN]: _rP }], [0, { [_jN]: _rI }], [0, { [_jN]: _rK }], [0, { [_jN]: _rRSE }], [0, { [_jN]: _ta }]]
2184
+ ];
2185
+ var UpdateStageRequest$ = [3, n0, _USR,
2186
+ 0,
2187
+ [_AI, _SN, _ALS, _ADu, _CCI, _DRS, _DI, _D, _RS, _SV],
2188
+ [[0, 1], [0, 1], [() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [() => RouteSettingsMap, { [_jN]: _rS }], [128 | 0, { [_jN]: _sV }]], 2
2189
+ ];
2190
+ var UpdateStageResponse$ = [3, n0, _USRp,
2191
+ 0,
2192
+ [_ALS, _AGM, _ADu, _CCI, _CD, _DRS, _DI, _D, _LDSM, _LUD, _RS, _SN, _SV, _T],
2193
+ [[() => AccessLogSettings$, { [_jN]: _aLS }], [2, { [_jN]: _aGM }], [2, { [_jN]: _aDu }], [0, { [_jN]: _cCI }], [5, { [_jN]: _cD }], [() => RouteSettings$, { [_jN]: _dRS }], [0, { [_jN]: _dI }], [0, { [_jN]: _d }], [0, { [_jN]: _lDSM }], [5, { [_jN]: _lUD }], [() => RouteSettingsMap, { [_jN]: _rS }], [0, { [_jN]: _sN }], [128 | 0, { [_jN]: _sV }], [128 | 0, { [_jN]: _t }]]
2194
+ ];
2195
+ var UpdateVpcLinkRequest$ = [3, n0, _UVLR,
2196
+ 0,
2197
+ [_VLI, _N],
2198
+ [[0, 1], [0, { [_jN]: _n }]], 1
2199
+ ];
2200
+ var UpdateVpcLinkResponse$ = [3, n0, _UVLRp,
2201
+ 0,
2202
+ [_CD, _N, _SGI, _SI, _T, _VLI, _VLS, _VLSM, _VLV],
2203
+ [[5, { [_jN]: _cD }], [0, { [_jN]: _n }], [64 | 0, { [_jN]: _sGI }], [64 | 0, { [_jN]: _sI }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _vLI }], [0, { [_jN]: _vLS }], [0, { [_jN]: _vLSM }], [0, { [_jN]: _vLV }]]
2204
+ ];
2205
+ var VpcLink$ = [3, n0, _VL,
2206
+ 0,
2207
+ [_N, _SGI, _SI, _VLI, _CD, _T, _VLS, _VLSM, _VLV],
2208
+ [[0, { [_jN]: _n }], [64 | 0, { [_jN]: _sGI }], [64 | 0, { [_jN]: _sI }], [0, { [_jN]: _vLI }], [5, { [_jN]: _cD }], [128 | 0, { [_jN]: _t }], [0, { [_jN]: _vLS }], [0, { [_jN]: _vLSM }], [0, { [_jN]: _vLV }]], 4
2209
+ ];
2210
+ var __Unit = "unit";
2211
+ var __listOfApi = [1, n0, _lOA,
2212
+ 0, [() => Api$,
2213
+ 0]
2214
+ ];
2215
+ var __listOfApiMapping = [1, n0, _lOAM,
2216
+ 0, [() => ApiMapping$,
2217
+ 0]
2218
+ ];
2219
+ var __listOfAuthorizer = [1, n0, _lOAi,
2220
+ 0, [() => Authorizer$,
2221
+ 0]
2222
+ ];
2223
+ var __listOfDeployment = [1, n0, _lOD,
2224
+ 0, [() => Deployment$,
2225
+ 0]
2226
+ ];
2227
+ var __listOfDomainName = [1, n0, _lODN,
2228
+ 0, [() => DomainName$,
2229
+ 0]
2230
+ ];
2231
+ var __listOfIntegration = [1, n0, _lOI,
2232
+ 0, [() => Integration$,
2233
+ 0]
2234
+ ];
2235
+ var __listOfIntegrationResponse = [1, n0, _lOIR,
2236
+ 0, [() => IntegrationResponse$,
2237
+ 0]
2238
+ ];
2239
+ var __listOfModel = [1, n0, _lOM,
2240
+ 0, [() => Model$,
2241
+ 0]
2242
+ ];
2243
+ var __listOfPortalProductSummary = [1, n0, _lOPPS,
2244
+ 0, [() => PortalProductSummary$,
2245
+ 0]
2246
+ ];
2247
+ var __listOfPortalSummary = [1, n0, _lOPS,
2248
+ 0, [() => PortalSummary$,
2249
+ 0]
2250
+ ];
2251
+ var __listOfProductPageSummaryNoBody = [1, n0, _lOPPSNB,
2252
+ 0, [() => ProductPageSummaryNoBody$,
2253
+ 0]
2254
+ ];
2255
+ var __listOfProductRestEndpointPageSummaryNoBody = [1, n0, _lOPREPSNB,
2256
+ 0, [() => ProductRestEndpointPageSummaryNoBody$,
2257
+ 0]
2258
+ ];
2259
+ var __listOfRoute = [1, n0, _lOR,
2260
+ 0, [() => Route$,
2261
+ 0]
2262
+ ];
2263
+ var __listOfRouteResponse = [1, n0, _lORR,
2264
+ 0, [() => RouteResponse$,
2265
+ 0]
2266
+ ];
2267
+ var __listOfRoutingRule = [1, n0, _lORRi,
2268
+ 0, [() => RoutingRule$,
2269
+ 0]
2270
+ ];
2271
+ var __listOfRoutingRuleAction = [1, n0, _lORRA,
2272
+ 0, [() => RoutingRuleAction$,
2273
+ 0]
2274
+ ];
2275
+ var __listOfRoutingRuleCondition = [1, n0, _lORRC,
2276
+ 0, [() => RoutingRuleCondition$,
2277
+ 0]
2278
+ ];
2279
+ var __listOfRoutingRuleMatchHeaderValue = [1, n0, _lORRMHV,
2280
+ 0, [() => RoutingRuleMatchHeaderValue$,
2281
+ 0]
2282
+ ];
2283
+ var __listOfSection = [1, n0, _lOS,
2284
+ 0, [() => Section$,
2285
+ 0]
2286
+ ];
2287
+ var __listOfStage = [1, n0, _lOSi,
2288
+ 0, [() => Stage$,
2289
+ 0]
2290
+ ];
2291
+ var __listOfVpcLink = [1, n0, _lOVL,
2292
+ 0, [() => VpcLink$,
2293
+ 0]
2294
+ ];
2295
+ var DomainNameConfigurations = [1, n0, _DNC,
2296
+ 0, [() => DomainNameConfiguration$,
2297
+ 0]
2298
+ ];
2299
+ var RouteParameters = [2, n0, _RPo,
2300
+ 0, [0,
2301
+ 0],
2302
+ [() => ParameterConstraints$,
2303
+ 0]
2304
+ ];
2305
+ var RouteSettingsMap = [2, n0, _RSM,
2306
+ 0, [0,
2307
+ 0],
2308
+ [() => RouteSettings$,
2309
+ 0]
2310
+ ];
2311
+ var CreateApi$ = [9, n0, _CAre,
2312
+ { [_ht]: ["POST", "/v2/apis", 201] }, () => CreateApiRequest$, () => CreateApiResponse$
2313
+ ];
2314
+ var CreateApiMapping$ = [9, n0, _CAM,
2315
+ { [_ht]: ["POST", "/v2/domainnames/{DomainName}/apimappings", 201] }, () => CreateApiMappingRequest$, () => CreateApiMappingResponse$
2316
+ ];
2317
+ var CreateAuthorizer$ = [9, n0, _CArea,
2318
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/authorizers", 201] }, () => CreateAuthorizerRequest$, () => CreateAuthorizerResponse$
2319
+ ];
2320
+ var CreateDeployment$ = [9, n0, _CDr,
2321
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/deployments", 201] }, () => CreateDeploymentRequest$, () => CreateDeploymentResponse$
2322
+ ];
2323
+ var CreateDomainName$ = [9, n0, _CDN,
2324
+ { [_ht]: ["POST", "/v2/domainnames", 201] }, () => CreateDomainNameRequest$, () => CreateDomainNameResponse$
2325
+ ];
2326
+ var CreateIntegration$ = [9, n0, _CIr,
2327
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/integrations", 201] }, () => CreateIntegrationRequest$, () => CreateIntegrationResult$
2328
+ ];
2329
+ var CreateIntegrationResponse$ = [9, n0, _CIRre,
2330
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/integrations/{IntegrationId}/integrationresponses", 201] }, () => CreateIntegrationResponseRequest$, () => CreateIntegrationResponseResponse$
2331
+ ];
2332
+ var CreateModel$ = [9, n0, _CM,
2333
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/models", 201] }, () => CreateModelRequest$, () => CreateModelResponse$
2334
+ ];
2335
+ var CreatePortal$ = [9, n0, _CP,
2336
+ { [_ht]: ["POST", "/v2/portals", 201] }, () => CreatePortalRequest$, () => CreatePortalResponse$
2337
+ ];
2338
+ var CreatePortalProduct$ = [9, n0, _CPP,
2339
+ { [_ht]: ["POST", "/v2/portalproducts", 201] }, () => CreatePortalProductRequest$, () => CreatePortalProductResponse$
2340
+ ];
2341
+ var CreateProductPage$ = [9, n0, _CPPr,
2342
+ { [_ht]: ["POST", "/v2/portalproducts/{PortalProductId}/productpages", 201] }, () => CreateProductPageRequest$, () => CreateProductPageResponse$
2343
+ ];
2344
+ var CreateProductRestEndpointPage$ = [9, n0, _CPREP,
2345
+ { [_ht]: ["POST", "/v2/portalproducts/{PortalProductId}/productrestendpointpages", 201] }, () => CreateProductRestEndpointPageRequest$, () => CreateProductRestEndpointPageResponse$
2346
+ ];
2347
+ var CreateRoute$ = [9, n0, _CR,
2348
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/routes", 201] }, () => CreateRouteRequest$, () => CreateRouteResult$
2349
+ ];
2350
+ var CreateRouteResponse$ = [9, n0, _CRRre,
2351
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/routes/{RouteId}/routeresponses", 201] }, () => CreateRouteResponseRequest$, () => CreateRouteResponseResponse$
2352
+ ];
2353
+ var CreateRoutingRule$ = [9, n0, _CRRrea,
2354
+ { [_ht]: ["POST", "/v2/domainnames/{DomainName}/routingrules", 201] }, () => CreateRoutingRuleRequest$, () => CreateRoutingRuleResponse$
2355
+ ];
2356
+ var CreateStage$ = [9, n0, _CS,
2357
+ { [_ht]: ["POST", "/v2/apis/{ApiId}/stages", 201] }, () => CreateStageRequest$, () => CreateStageResponse$
2358
+ ];
2359
+ var CreateVpcLink$ = [9, n0, _CVL,
2360
+ { [_ht]: ["POST", "/v2/vpclinks", 201] }, () => CreateVpcLinkRequest$, () => CreateVpcLinkResponse$
2361
+ ];
2362
+ var DeleteAccessLogSettings$ = [9, n0, _DALS,
2363
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/stages/{StageName}/accesslogsettings", 204] }, () => DeleteAccessLogSettingsRequest$, () => __Unit
2364
+ ];
2365
+ var DeleteApi$ = [9, n0, _DAe,
2366
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}", 204] }, () => DeleteApiRequest$, () => __Unit
2367
+ ];
2368
+ var DeleteApiMapping$ = [9, n0, _DAM,
2369
+ { [_ht]: ["DELETE", "/v2/domainnames/{DomainName}/apimappings/{ApiMappingId}", 204] }, () => DeleteApiMappingRequest$, () => __Unit
2370
+ ];
2371
+ var DeleteAuthorizer$ = [9, n0, _DAel,
2372
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/authorizers/{AuthorizerId}", 204] }, () => DeleteAuthorizerRequest$, () => __Unit
2373
+ ];
2374
+ var DeleteCorsConfiguration$ = [9, n0, _DCC,
2375
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/cors", 204] }, () => DeleteCorsConfigurationRequest$, () => __Unit
2376
+ ];
2377
+ var DeleteDeployment$ = [9, n0, _DD,
2378
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/deployments/{DeploymentId}", 204] }, () => DeleteDeploymentRequest$, () => __Unit
2379
+ ];
2380
+ var DeleteDomainName$ = [9, n0, _DDN,
2381
+ { [_ht]: ["DELETE", "/v2/domainnames/{DomainName}", 204] }, () => DeleteDomainNameRequest$, () => __Unit
2382
+ ];
2383
+ var DeleteIntegration$ = [9, n0, _DIe,
2384
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/integrations/{IntegrationId}", 204] }, () => DeleteIntegrationRequest$, () => __Unit
2385
+ ];
2386
+ var DeleteIntegrationResponse$ = [9, n0, _DIRe,
2387
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/integrations/{IntegrationId}/integrationresponses/{IntegrationResponseId}", 204] }, () => DeleteIntegrationResponseRequest$, () => __Unit
2388
+ ];
2389
+ var DeleteModel$ = [9, n0, _DM,
2390
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/models/{ModelId}", 204] }, () => DeleteModelRequest$, () => __Unit
2391
+ ];
2392
+ var DeletePortal$ = [9, n0, _DP,
2393
+ { [_ht]: ["DELETE", "/v2/portals/{PortalId}", 204] }, () => DeletePortalRequest$, () => __Unit
2394
+ ];
2395
+ var DeletePortalProduct$ = [9, n0, _DPP,
2396
+ { [_ht]: ["DELETE", "/v2/portalproducts/{PortalProductId}", 204] }, () => DeletePortalProductRequest$, () => __Unit
2397
+ ];
2398
+ var DeletePortalProductSharingPolicy$ = [9, n0, _DPPSP,
2399
+ { [_ht]: ["DELETE", "/v2/portalproducts/{PortalProductId}/sharingpolicy", 204] }, () => DeletePortalProductSharingPolicyRequest$, () => __Unit
2400
+ ];
2401
+ var DeleteProductPage$ = [9, n0, _DPPe,
2402
+ { [_ht]: ["DELETE", "/v2/portalproducts/{PortalProductId}/productpages/{ProductPageId}", 204] }, () => DeleteProductPageRequest$, () => __Unit
2403
+ ];
2404
+ var DeleteProductRestEndpointPage$ = [9, n0, _DPREP,
2405
+ { [_ht]: ["DELETE", "/v2/portalproducts/{PortalProductId}/productrestendpointpages/{ProductRestEndpointPageId}", 204] }, () => DeleteProductRestEndpointPageRequest$, () => __Unit
2406
+ ];
2407
+ var DeleteRoute$ = [9, n0, _DR,
2408
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/routes/{RouteId}", 204] }, () => DeleteRouteRequest$, () => __Unit
2409
+ ];
2410
+ var DeleteRouteRequestParameter$ = [9, n0, _DRRP,
2411
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/routes/{RouteId}/requestparameters/{RequestParameterKey}", 204] }, () => DeleteRouteRequestParameterRequest$, () => __Unit
2412
+ ];
2413
+ var DeleteRouteResponse$ = [9, n0, _DRRe,
2414
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/routes/{RouteId}/routeresponses/{RouteResponseId}", 204] }, () => DeleteRouteResponseRequest$, () => __Unit
2415
+ ];
2416
+ var DeleteRouteSettings$ = [9, n0, _DRSe,
2417
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/stages/{StageName}/routesettings/{RouteKey}", 204] }, () => DeleteRouteSettingsRequest$, () => __Unit
2418
+ ];
2419
+ var DeleteRoutingRule$ = [9, n0, _DRRel,
2420
+ { [_ht]: ["DELETE", "/v2/domainnames/{DomainName}/routingrules/{RoutingRuleId}", 204] }, () => DeleteRoutingRuleRequest$, () => __Unit
2421
+ ];
2422
+ var DeleteStage$ = [9, n0, _DSe,
2423
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/stages/{StageName}", 204] }, () => DeleteStageRequest$, () => __Unit
2424
+ ];
2425
+ var DeleteVpcLink$ = [9, n0, _DVL,
2426
+ { [_ht]: ["DELETE", "/v2/vpclinks/{VpcLinkId}", 202] }, () => DeleteVpcLinkRequest$, () => DeleteVpcLinkResponse$
2427
+ ];
2428
+ var DisablePortal$ = [9, n0, _DPi,
2429
+ { [_ht]: ["DELETE", "/v2/portals/{PortalId}/publish", 204] }, () => DisablePortalRequest$, () => __Unit
2430
+ ];
2431
+ var ExportApi$ = [9, n0, _EA,
2432
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/exports/{Specification}", 200] }, () => ExportApiRequest$, () => ExportApiResponse$
2433
+ ];
2434
+ var GetApi$ = [9, n0, _GA,
2435
+ { [_ht]: ["GET", "/v2/apis/{ApiId}", 200] }, () => GetApiRequest$, () => GetApiResponse$
2436
+ ];
2437
+ var GetApiMapping$ = [9, n0, _GAM,
2438
+ { [_ht]: ["GET", "/v2/domainnames/{DomainName}/apimappings/{ApiMappingId}", 200] }, () => GetApiMappingRequest$, () => GetApiMappingResponse$
2439
+ ];
2440
+ var GetApiMappings$ = [9, n0, _GAMe,
2441
+ { [_ht]: ["GET", "/v2/domainnames/{DomainName}/apimappings", 200] }, () => GetApiMappingsRequest$, () => GetApiMappingsResponse$
2442
+ ];
2443
+ var GetApis$ = [9, n0, _GAe,
2444
+ { [_ht]: ["GET", "/v2/apis", 200] }, () => GetApisRequest$, () => GetApisResponse$
2445
+ ];
2446
+ var GetAuthorizer$ = [9, n0, _GAet,
2447
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/authorizers/{AuthorizerId}", 200] }, () => GetAuthorizerRequest$, () => GetAuthorizerResponse$
2448
+ ];
2449
+ var GetAuthorizers$ = [9, n0, _GAetu,
2450
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/authorizers", 200] }, () => GetAuthorizersRequest$, () => GetAuthorizersResponse$
2451
+ ];
2452
+ var GetDeployment$ = [9, n0, _GD,
2453
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/deployments/{DeploymentId}", 200] }, () => GetDeploymentRequest$, () => GetDeploymentResponse$
2454
+ ];
2455
+ var GetDeployments$ = [9, n0, _GDe,
2456
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/deployments", 200] }, () => GetDeploymentsRequest$, () => GetDeploymentsResponse$
2457
+ ];
2458
+ var GetDomainName$ = [9, n0, _GDN,
2459
+ { [_ht]: ["GET", "/v2/domainnames/{DomainName}", 200] }, () => GetDomainNameRequest$, () => GetDomainNameResponse$
2460
+ ];
2461
+ var GetDomainNames$ = [9, n0, _GDNe,
2462
+ { [_ht]: ["GET", "/v2/domainnames", 200] }, () => GetDomainNamesRequest$, () => GetDomainNamesResponse$
2463
+ ];
2464
+ var GetIntegration$ = [9, n0, _GI,
2465
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/integrations/{IntegrationId}", 200] }, () => GetIntegrationRequest$, () => GetIntegrationResult$
2466
+ ];
2467
+ var GetIntegrationResponse$ = [9, n0, _GIRetnt,
2468
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/integrations/{IntegrationId}/integrationresponses/{IntegrationResponseId}", 200] }, () => GetIntegrationResponseRequest$, () => GetIntegrationResponseResponse$
2469
+ ];
2470
+ var GetIntegrationResponses$ = [9, n0, _GIRetnte,
2471
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/integrations/{IntegrationId}/integrationresponses", 200] }, () => GetIntegrationResponsesRequest$, () => GetIntegrationResponsesResponse$
2472
+ ];
2473
+ var GetIntegrations$ = [9, n0, _GIe,
2474
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/integrations", 200] }, () => GetIntegrationsRequest$, () => GetIntegrationsResponse$
2475
+ ];
2476
+ var GetModel$ = [9, n0, _GM,
2477
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/models/{ModelId}", 200] }, () => GetModelRequest$, () => GetModelResponse$
2478
+ ];
2479
+ var GetModels$ = [9, n0, _GMe,
2480
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/models", 200] }, () => GetModelsRequest$, () => GetModelsResponse$
2481
+ ];
2482
+ var GetModelTemplate$ = [9, n0, _GMT,
2483
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/models/{ModelId}/template", 200] }, () => GetModelTemplateRequest$, () => GetModelTemplateResponse$
2484
+ ];
2485
+ var GetPortal$ = [9, n0, _GP,
2486
+ { [_ht]: ["GET", "/v2/portals/{PortalId}", 200] }, () => GetPortalRequest$, () => GetPortalResponse$
2487
+ ];
2488
+ var GetPortalProduct$ = [9, n0, _GPP,
2489
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}", 200] }, () => GetPortalProductRequest$, () => GetPortalProductResponse$
2490
+ ];
2491
+ var GetPortalProductSharingPolicy$ = [9, n0, _GPPSP,
2492
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}/sharingpolicy", 200] }, () => GetPortalProductSharingPolicyRequest$, () => GetPortalProductSharingPolicyResponse$
2493
+ ];
2494
+ var GetProductPage$ = [9, n0, _GPPe,
2495
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}/productpages/{ProductPageId}", 200] }, () => GetProductPageRequest$, () => GetProductPageResponse$
2496
+ ];
2497
+ var GetProductRestEndpointPage$ = [9, n0, _GPREP,
2498
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}/productrestendpointpages/{ProductRestEndpointPageId}", 200] }, () => GetProductRestEndpointPageRequest$, () => GetProductRestEndpointPageResponse$
2499
+ ];
2500
+ var GetRoute$ = [9, n0, _GR,
2501
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/routes/{RouteId}", 200] }, () => GetRouteRequest$, () => GetRouteResult$
2502
+ ];
2503
+ var GetRouteResponse$ = [9, n0, _GRRetou,
2504
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/routes/{RouteId}/routeresponses/{RouteResponseId}", 200] }, () => GetRouteResponseRequest$, () => GetRouteResponseResponse$
2505
+ ];
2506
+ var GetRouteResponses$ = [9, n0, _GRRetout,
2507
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/routes/{RouteId}/routeresponses", 200] }, () => GetRouteResponsesRequest$, () => GetRouteResponsesResponse$
2508
+ ];
2509
+ var GetRoutes$ = [9, n0, _GRe,
2510
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/routes", 200] }, () => GetRoutesRequest$, () => GetRoutesResponse$
2511
+ ];
2512
+ var GetRoutingRule$ = [9, n0, _GRRetouti,
2513
+ { [_ht]: ["GET", "/v2/domainnames/{DomainName}/routingrules/{RoutingRuleId}", 200] }, () => GetRoutingRuleRequest$, () => GetRoutingRuleResponse$
2514
+ ];
2515
+ var GetStage$ = [9, n0, _GS,
2516
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/stages/{StageName}", 200] }, () => GetStageRequest$, () => GetStageResponse$
2517
+ ];
2518
+ var GetStages$ = [9, n0, _GSe,
2519
+ { [_ht]: ["GET", "/v2/apis/{ApiId}/stages", 200] }, () => GetStagesRequest$, () => GetStagesResponse$
2520
+ ];
2521
+ var GetTags$ = [9, n0, _GT,
2522
+ { [_ht]: ["GET", "/v2/tags/{ResourceArn}", 200] }, () => GetTagsRequest$, () => GetTagsResponse$
2523
+ ];
2524
+ var GetVpcLink$ = [9, n0, _GVL,
2525
+ { [_ht]: ["GET", "/v2/vpclinks/{VpcLinkId}", 200] }, () => GetVpcLinkRequest$, () => GetVpcLinkResponse$
2526
+ ];
2527
+ var GetVpcLinks$ = [9, n0, _GVLe,
2528
+ { [_ht]: ["GET", "/v2/vpclinks", 200] }, () => GetVpcLinksRequest$, () => GetVpcLinksResponse$
2529
+ ];
2530
+ var ImportApi$ = [9, n0, _IAm,
2531
+ { [_ht]: ["PUT", "/v2/apis", 201] }, () => ImportApiRequest$, () => ImportApiResponse$
2532
+ ];
2533
+ var ListPortalProducts$ = [9, n0, _LPP,
2534
+ { [_ht]: ["GET", "/v2/portalproducts", 200] }, () => ListPortalProductsRequest$, () => ListPortalProductsResponse$
2535
+ ];
2536
+ var ListPortals$ = [9, n0, _LPi,
2537
+ { [_ht]: ["GET", "/v2/portals", 200] }, () => ListPortalsRequest$, () => ListPortalsResponse$
2538
+ ];
2539
+ var ListProductPages$ = [9, n0, _LPPi,
2540
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}/productpages", 200] }, () => ListProductPagesRequest$, () => ListProductPagesResponse$
2541
+ ];
2542
+ var ListProductRestEndpointPages$ = [9, n0, _LPREP,
2543
+ { [_ht]: ["GET", "/v2/portalproducts/{PortalProductId}/productrestendpointpages", 200] }, () => ListProductRestEndpointPagesRequest$, () => ListProductRestEndpointPagesResponse$
2544
+ ];
2545
+ var ListRoutingRules$ = [9, n0, _LRR,
2546
+ { [_ht]: ["GET", "/v2/domainnames/{DomainName}/routingrules", 200] }, () => ListRoutingRulesRequest$, () => ListRoutingRulesResponse$
2547
+ ];
2548
+ var PreviewPortal$ = [9, n0, _PP,
2549
+ { [_ht]: ["POST", "/v2/portals/{PortalId}/preview", 202] }, () => PreviewPortalRequest$, () => PreviewPortalResponse$
2550
+ ];
2551
+ var PublishPortal$ = [9, n0, _PPu,
2552
+ { [_ht]: ["POST", "/v2/portals/{PortalId}/publish", 202] }, () => PublishPortalRequest$, () => PublishPortalResponse$
2553
+ ];
2554
+ var PutPortalProductSharingPolicy$ = [9, n0, _PPPSP,
2555
+ { [_ht]: ["PUT", "/v2/portalproducts/{PortalProductId}/sharingpolicy", 200] }, () => PutPortalProductSharingPolicyRequest$, () => PutPortalProductSharingPolicyResponse$
2556
+ ];
2557
+ var PutRoutingRule$ = [9, n0, _PRR,
2558
+ { [_ht]: ["PUT", "/v2/domainnames/{DomainName}/routingrules/{RoutingRuleId}", 200] }, () => PutRoutingRuleRequest$, () => PutRoutingRuleResponse$
2559
+ ];
2560
+ var ReimportApi$ = [9, n0, _RAe,
2561
+ { [_ht]: ["PUT", "/v2/apis/{ApiId}", 201] }, () => ReimportApiRequest$, () => ReimportApiResponse$
2562
+ ];
2563
+ var ResetAuthorizersCache$ = [9, n0, _RAC,
2564
+ { [_ht]: ["DELETE", "/v2/apis/{ApiId}/stages/{StageName}/cache/authorizers", 204] }, () => ResetAuthorizersCacheRequest$, () => __Unit
2565
+ ];
2566
+ var TagResource$ = [9, n0, _TR,
2567
+ { [_ht]: ["POST", "/v2/tags/{ResourceArn}", 201] }, () => TagResourceRequest$, () => TagResourceResponse$
2568
+ ];
2569
+ var UntagResource$ = [9, n0, _UR,
2570
+ { [_ht]: ["DELETE", "/v2/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
2571
+ ];
2572
+ var UpdateApi$ = [9, n0, _UA,
2573
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}", 200] }, () => UpdateApiRequest$, () => UpdateApiResponse$
2574
+ ];
2575
+ var UpdateApiMapping$ = [9, n0, _UAM,
2576
+ { [_ht]: ["PATCH", "/v2/domainnames/{DomainName}/apimappings/{ApiMappingId}", 200] }, () => UpdateApiMappingRequest$, () => UpdateApiMappingResponse$
2577
+ ];
2578
+ var UpdateAuthorizer$ = [9, n0, _UAp,
2579
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/authorizers/{AuthorizerId}", 200] }, () => UpdateAuthorizerRequest$, () => UpdateAuthorizerResponse$
2580
+ ];
2581
+ var UpdateDeployment$ = [9, n0, _UD,
2582
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/deployments/{DeploymentId}", 200] }, () => UpdateDeploymentRequest$, () => UpdateDeploymentResponse$
2583
+ ];
2584
+ var UpdateDomainName$ = [9, n0, _UDN,
2585
+ { [_ht]: ["PATCH", "/v2/domainnames/{DomainName}", 200] }, () => UpdateDomainNameRequest$, () => UpdateDomainNameResponse$
2586
+ ];
2587
+ var UpdateIntegration$ = [9, n0, _UI,
2588
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/integrations/{IntegrationId}", 200] }, () => UpdateIntegrationRequest$, () => UpdateIntegrationResult$
2589
+ ];
2590
+ var UpdateIntegrationResponse$ = [9, n0, _UIRpd,
2591
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/integrations/{IntegrationId}/integrationresponses/{IntegrationResponseId}", 200] }, () => UpdateIntegrationResponseRequest$, () => UpdateIntegrationResponseResponse$
2592
+ ];
2593
+ var UpdateModel$ = [9, n0, _UM,
2594
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/models/{ModelId}", 200] }, () => UpdateModelRequest$, () => UpdateModelResponse$
2595
+ ];
2596
+ var UpdatePortal$ = [9, n0, _UP,
2597
+ { [_ht]: ["PATCH", "/v2/portals/{PortalId}", 200] }, () => UpdatePortalRequest$, () => UpdatePortalResponse$
2598
+ ];
2599
+ var UpdatePortalProduct$ = [9, n0, _UPP,
2600
+ { [_ht]: ["PATCH", "/v2/portalproducts/{PortalProductId}", 200] }, () => UpdatePortalProductRequest$, () => UpdatePortalProductResponse$
2601
+ ];
2602
+ var UpdateProductPage$ = [9, n0, _UPPp,
2603
+ { [_ht]: ["PATCH", "/v2/portalproducts/{PortalProductId}/productpages/{ProductPageId}", 200] }, () => UpdateProductPageRequest$, () => UpdateProductPageResponse$
2604
+ ];
2605
+ var UpdateProductRestEndpointPage$ = [9, n0, _UPREP,
2606
+ { [_ht]: ["PATCH", "/v2/portalproducts/{PortalProductId}/productrestendpointpages/{ProductRestEndpointPageId}", 200] }, () => UpdateProductRestEndpointPageRequest$, () => UpdateProductRestEndpointPageResponse$
2607
+ ];
2608
+ var UpdateRoute$ = [9, n0, _URp,
2609
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/routes/{RouteId}", 200] }, () => UpdateRouteRequest$, () => UpdateRouteResult$
2610
+ ];
2611
+ var UpdateRouteResponse$ = [9, n0, _URRpda,
2612
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/routes/{RouteId}/routeresponses/{RouteResponseId}", 200] }, () => UpdateRouteResponseRequest$, () => UpdateRouteResponseResponse$
2613
+ ];
2614
+ var UpdateStage$ = [9, n0, _US,
2615
+ { [_ht]: ["PATCH", "/v2/apis/{ApiId}/stages/{StageName}", 200] }, () => UpdateStageRequest$, () => UpdateStageResponse$
2616
+ ];
2617
+ var UpdateVpcLink$ = [9, n0, _UVL,
2618
+ { [_ht]: ["PATCH", "/v2/vpclinks/{VpcLinkId}", 200] }, () => UpdateVpcLinkRequest$, () => UpdateVpcLinkResponse$
2619
+ ];
2620
+
2621
+ const getRuntimeConfig$1 = (config) => {
2622
+ return {
2623
+ apiVersion: "2018-11-29",
2624
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2625
+ base64Encoder: config?.base64Encoder ?? toBase64,
2626
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2627
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2628
+ extensions: config?.extensions ?? [],
2629
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultApiGatewayV2HttpAuthSchemeProvider,
2630
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2631
+ {
2632
+ schemeId: "aws.auth#sigv4",
2633
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2634
+ signer: new AwsSdkSigV4Signer(),
2635
+ },
2636
+ ],
2637
+ logger: config?.logger ?? new NoOpLogger(),
2638
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
2639
+ protocolSettings: config?.protocolSettings ?? {
2640
+ defaultNamespace: "com.amazonaws.apigatewayv2",
2641
+ errorTypeRegistries,
2642
+ version: "2018-11-29",
2643
+ serviceTarget: "ApiGatewayV2",
2644
+ },
2645
+ serviceId: config?.serviceId ?? "ApiGatewayV2",
2646
+ sha256: config?.sha256 ?? Sha256,
2647
+ urlParser: config?.urlParser ?? parseUrl,
2648
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2649
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2650
+ };
2651
+ };
2652
+
2653
+ const getRuntimeConfig = (config) => {
2654
+ emitWarningIfUnsupportedVersion(process.version);
2655
+ const defaultsMode = resolveDefaultsModeConfig(config);
2656
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2657
+ const clientSharedValues = getRuntimeConfig$1(config);
2658
+ emitWarningIfUnsupportedVersion$1(process.version);
2659
+ const loaderConfig = {
2660
+ profile: config?.profile,
2661
+ logger: clientSharedValues.logger,
2662
+ };
2663
+ return {
2664
+ ...clientSharedValues,
2665
+ ...config,
2666
+ runtime: "node",
2667
+ defaultsMode,
2668
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2669
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2670
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2671
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2672
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2673
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2674
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2675
+ retryMode: config?.retryMode ??
2676
+ loadConfig({
2677
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2678
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2679
+ }, config),
2680
+ streamCollector: config?.streamCollector ?? streamCollector,
2681
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2682
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2683
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2684
+ };
2685
+ };
2686
+
34
2687
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
2688
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
2689
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1561,129 +4214,479 @@ const VpcLinkVersion = {
1561
4214
  V2: "V2",
1562
4215
  };
1563
4216
 
4217
+ exports.ACMManaged$ = ACMManaged$;
4218
+ exports.AccessDeniedException = AccessDeniedException;
4219
+ exports.AccessDeniedException$ = AccessDeniedException$;
4220
+ exports.AccessLogSettings$ = AccessLogSettings$;
4221
+ exports.Api$ = Api$;
1564
4222
  exports.ApiGatewayV2 = ApiGatewayV2;
1565
4223
  exports.ApiGatewayV2Client = ApiGatewayV2Client;
4224
+ exports.ApiGatewayV2ServiceException = ApiGatewayV2ServiceException;
4225
+ exports.ApiGatewayV2ServiceException$ = ApiGatewayV2ServiceException$;
4226
+ exports.ApiMapping$ = ApiMapping$;
4227
+ exports.Authorization$ = Authorization$;
1566
4228
  exports.AuthorizationType = AuthorizationType;
4229
+ exports.Authorizer$ = Authorizer$;
1567
4230
  exports.AuthorizerType = AuthorizerType;
4231
+ exports.BadRequestException = BadRequestException;
4232
+ exports.BadRequestException$ = BadRequestException$;
4233
+ exports.CognitoConfig$ = CognitoConfig$;
4234
+ exports.ConflictException = ConflictException;
4235
+ exports.ConflictException$ = ConflictException$;
1568
4236
  exports.ConnectionType = ConnectionType;
1569
4237
  exports.ContentHandlingStrategy = ContentHandlingStrategy;
4238
+ exports.Cors$ = Cors$;
4239
+ exports.CreateApi$ = CreateApi$;
1570
4240
  exports.CreateApiCommand = CreateApiCommand;
4241
+ exports.CreateApiMapping$ = CreateApiMapping$;
1571
4242
  exports.CreateApiMappingCommand = CreateApiMappingCommand;
4243
+ exports.CreateApiMappingRequest$ = CreateApiMappingRequest$;
4244
+ exports.CreateApiMappingResponse$ = CreateApiMappingResponse$;
4245
+ exports.CreateApiRequest$ = CreateApiRequest$;
4246
+ exports.CreateApiResponse$ = CreateApiResponse$;
4247
+ exports.CreateAuthorizer$ = CreateAuthorizer$;
1572
4248
  exports.CreateAuthorizerCommand = CreateAuthorizerCommand;
4249
+ exports.CreateAuthorizerRequest$ = CreateAuthorizerRequest$;
4250
+ exports.CreateAuthorizerResponse$ = CreateAuthorizerResponse$;
4251
+ exports.CreateDeployment$ = CreateDeployment$;
1573
4252
  exports.CreateDeploymentCommand = CreateDeploymentCommand;
4253
+ exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
4254
+ exports.CreateDeploymentResponse$ = CreateDeploymentResponse$;
4255
+ exports.CreateDomainName$ = CreateDomainName$;
1574
4256
  exports.CreateDomainNameCommand = CreateDomainNameCommand;
4257
+ exports.CreateDomainNameRequest$ = CreateDomainNameRequest$;
4258
+ exports.CreateDomainNameResponse$ = CreateDomainNameResponse$;
4259
+ exports.CreateIntegration$ = CreateIntegration$;
1575
4260
  exports.CreateIntegrationCommand = CreateIntegrationCommand;
4261
+ exports.CreateIntegrationRequest$ = CreateIntegrationRequest$;
4262
+ exports.CreateIntegrationResponse$ = CreateIntegrationResponse$;
1576
4263
  exports.CreateIntegrationResponseCommand = CreateIntegrationResponseCommand;
4264
+ exports.CreateIntegrationResponseRequest$ = CreateIntegrationResponseRequest$;
4265
+ exports.CreateIntegrationResponseResponse$ = CreateIntegrationResponseResponse$;
4266
+ exports.CreateIntegrationResult$ = CreateIntegrationResult$;
4267
+ exports.CreateModel$ = CreateModel$;
1577
4268
  exports.CreateModelCommand = CreateModelCommand;
4269
+ exports.CreateModelRequest$ = CreateModelRequest$;
4270
+ exports.CreateModelResponse$ = CreateModelResponse$;
4271
+ exports.CreatePortal$ = CreatePortal$;
1578
4272
  exports.CreatePortalCommand = CreatePortalCommand;
4273
+ exports.CreatePortalProduct$ = CreatePortalProduct$;
1579
4274
  exports.CreatePortalProductCommand = CreatePortalProductCommand;
4275
+ exports.CreatePortalProductRequest$ = CreatePortalProductRequest$;
4276
+ exports.CreatePortalProductResponse$ = CreatePortalProductResponse$;
4277
+ exports.CreatePortalRequest$ = CreatePortalRequest$;
4278
+ exports.CreatePortalResponse$ = CreatePortalResponse$;
4279
+ exports.CreateProductPage$ = CreateProductPage$;
1580
4280
  exports.CreateProductPageCommand = CreateProductPageCommand;
4281
+ exports.CreateProductPageRequest$ = CreateProductPageRequest$;
4282
+ exports.CreateProductPageResponse$ = CreateProductPageResponse$;
4283
+ exports.CreateProductRestEndpointPage$ = CreateProductRestEndpointPage$;
1581
4284
  exports.CreateProductRestEndpointPageCommand = CreateProductRestEndpointPageCommand;
4285
+ exports.CreateProductRestEndpointPageRequest$ = CreateProductRestEndpointPageRequest$;
4286
+ exports.CreateProductRestEndpointPageResponse$ = CreateProductRestEndpointPageResponse$;
4287
+ exports.CreateRoute$ = CreateRoute$;
1582
4288
  exports.CreateRouteCommand = CreateRouteCommand;
4289
+ exports.CreateRouteRequest$ = CreateRouteRequest$;
4290
+ exports.CreateRouteResponse$ = CreateRouteResponse$;
1583
4291
  exports.CreateRouteResponseCommand = CreateRouteResponseCommand;
4292
+ exports.CreateRouteResponseRequest$ = CreateRouteResponseRequest$;
4293
+ exports.CreateRouteResponseResponse$ = CreateRouteResponseResponse$;
4294
+ exports.CreateRouteResult$ = CreateRouteResult$;
4295
+ exports.CreateRoutingRule$ = CreateRoutingRule$;
1584
4296
  exports.CreateRoutingRuleCommand = CreateRoutingRuleCommand;
4297
+ exports.CreateRoutingRuleRequest$ = CreateRoutingRuleRequest$;
4298
+ exports.CreateRoutingRuleResponse$ = CreateRoutingRuleResponse$;
4299
+ exports.CreateStage$ = CreateStage$;
1585
4300
  exports.CreateStageCommand = CreateStageCommand;
4301
+ exports.CreateStageRequest$ = CreateStageRequest$;
4302
+ exports.CreateStageResponse$ = CreateStageResponse$;
4303
+ exports.CreateVpcLink$ = CreateVpcLink$;
1586
4304
  exports.CreateVpcLinkCommand = CreateVpcLinkCommand;
4305
+ exports.CreateVpcLinkRequest$ = CreateVpcLinkRequest$;
4306
+ exports.CreateVpcLinkResponse$ = CreateVpcLinkResponse$;
4307
+ exports.CustomColors$ = CustomColors$;
4308
+ exports.DeleteAccessLogSettings$ = DeleteAccessLogSettings$;
1587
4309
  exports.DeleteAccessLogSettingsCommand = DeleteAccessLogSettingsCommand;
4310
+ exports.DeleteAccessLogSettingsRequest$ = DeleteAccessLogSettingsRequest$;
4311
+ exports.DeleteApi$ = DeleteApi$;
1588
4312
  exports.DeleteApiCommand = DeleteApiCommand;
4313
+ exports.DeleteApiMapping$ = DeleteApiMapping$;
1589
4314
  exports.DeleteApiMappingCommand = DeleteApiMappingCommand;
4315
+ exports.DeleteApiMappingRequest$ = DeleteApiMappingRequest$;
4316
+ exports.DeleteApiRequest$ = DeleteApiRequest$;
4317
+ exports.DeleteAuthorizer$ = DeleteAuthorizer$;
1590
4318
  exports.DeleteAuthorizerCommand = DeleteAuthorizerCommand;
4319
+ exports.DeleteAuthorizerRequest$ = DeleteAuthorizerRequest$;
4320
+ exports.DeleteCorsConfiguration$ = DeleteCorsConfiguration$;
1591
4321
  exports.DeleteCorsConfigurationCommand = DeleteCorsConfigurationCommand;
4322
+ exports.DeleteCorsConfigurationRequest$ = DeleteCorsConfigurationRequest$;
4323
+ exports.DeleteDeployment$ = DeleteDeployment$;
1592
4324
  exports.DeleteDeploymentCommand = DeleteDeploymentCommand;
4325
+ exports.DeleteDeploymentRequest$ = DeleteDeploymentRequest$;
4326
+ exports.DeleteDomainName$ = DeleteDomainName$;
1593
4327
  exports.DeleteDomainNameCommand = DeleteDomainNameCommand;
4328
+ exports.DeleteDomainNameRequest$ = DeleteDomainNameRequest$;
4329
+ exports.DeleteIntegration$ = DeleteIntegration$;
1594
4330
  exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
4331
+ exports.DeleteIntegrationRequest$ = DeleteIntegrationRequest$;
4332
+ exports.DeleteIntegrationResponse$ = DeleteIntegrationResponse$;
1595
4333
  exports.DeleteIntegrationResponseCommand = DeleteIntegrationResponseCommand;
4334
+ exports.DeleteIntegrationResponseRequest$ = DeleteIntegrationResponseRequest$;
4335
+ exports.DeleteModel$ = DeleteModel$;
1596
4336
  exports.DeleteModelCommand = DeleteModelCommand;
4337
+ exports.DeleteModelRequest$ = DeleteModelRequest$;
4338
+ exports.DeletePortal$ = DeletePortal$;
1597
4339
  exports.DeletePortalCommand = DeletePortalCommand;
4340
+ exports.DeletePortalProduct$ = DeletePortalProduct$;
1598
4341
  exports.DeletePortalProductCommand = DeletePortalProductCommand;
4342
+ exports.DeletePortalProductRequest$ = DeletePortalProductRequest$;
4343
+ exports.DeletePortalProductSharingPolicy$ = DeletePortalProductSharingPolicy$;
1599
4344
  exports.DeletePortalProductSharingPolicyCommand = DeletePortalProductSharingPolicyCommand;
4345
+ exports.DeletePortalProductSharingPolicyRequest$ = DeletePortalProductSharingPolicyRequest$;
4346
+ exports.DeletePortalRequest$ = DeletePortalRequest$;
4347
+ exports.DeleteProductPage$ = DeleteProductPage$;
1600
4348
  exports.DeleteProductPageCommand = DeleteProductPageCommand;
4349
+ exports.DeleteProductPageRequest$ = DeleteProductPageRequest$;
4350
+ exports.DeleteProductRestEndpointPage$ = DeleteProductRestEndpointPage$;
1601
4351
  exports.DeleteProductRestEndpointPageCommand = DeleteProductRestEndpointPageCommand;
4352
+ exports.DeleteProductRestEndpointPageRequest$ = DeleteProductRestEndpointPageRequest$;
4353
+ exports.DeleteRoute$ = DeleteRoute$;
1602
4354
  exports.DeleteRouteCommand = DeleteRouteCommand;
4355
+ exports.DeleteRouteRequest$ = DeleteRouteRequest$;
4356
+ exports.DeleteRouteRequestParameter$ = DeleteRouteRequestParameter$;
1603
4357
  exports.DeleteRouteRequestParameterCommand = DeleteRouteRequestParameterCommand;
4358
+ exports.DeleteRouteRequestParameterRequest$ = DeleteRouteRequestParameterRequest$;
4359
+ exports.DeleteRouteResponse$ = DeleteRouteResponse$;
1604
4360
  exports.DeleteRouteResponseCommand = DeleteRouteResponseCommand;
4361
+ exports.DeleteRouteResponseRequest$ = DeleteRouteResponseRequest$;
4362
+ exports.DeleteRouteSettings$ = DeleteRouteSettings$;
1605
4363
  exports.DeleteRouteSettingsCommand = DeleteRouteSettingsCommand;
4364
+ exports.DeleteRouteSettingsRequest$ = DeleteRouteSettingsRequest$;
4365
+ exports.DeleteRoutingRule$ = DeleteRoutingRule$;
1606
4366
  exports.DeleteRoutingRuleCommand = DeleteRoutingRuleCommand;
4367
+ exports.DeleteRoutingRuleRequest$ = DeleteRoutingRuleRequest$;
4368
+ exports.DeleteStage$ = DeleteStage$;
1607
4369
  exports.DeleteStageCommand = DeleteStageCommand;
4370
+ exports.DeleteStageRequest$ = DeleteStageRequest$;
4371
+ exports.DeleteVpcLink$ = DeleteVpcLink$;
1608
4372
  exports.DeleteVpcLinkCommand = DeleteVpcLinkCommand;
4373
+ exports.DeleteVpcLinkRequest$ = DeleteVpcLinkRequest$;
4374
+ exports.DeleteVpcLinkResponse$ = DeleteVpcLinkResponse$;
4375
+ exports.Deployment$ = Deployment$;
1609
4376
  exports.DeploymentStatus = DeploymentStatus;
4377
+ exports.DisablePortal$ = DisablePortal$;
1610
4378
  exports.DisablePortalCommand = DisablePortalCommand;
4379
+ exports.DisablePortalRequest$ = DisablePortalRequest$;
4380
+ exports.DisplayContent$ = DisplayContent$;
4381
+ exports.DisplayContentOverrides$ = DisplayContentOverrides$;
4382
+ exports.DisplayOrder$ = DisplayOrder$;
4383
+ exports.DomainName$ = DomainName$;
4384
+ exports.DomainNameConfiguration$ = DomainNameConfiguration$;
1611
4385
  exports.DomainNameStatus = DomainNameStatus;
4386
+ exports.EndpointConfigurationRequest$ = EndpointConfigurationRequest$;
4387
+ exports.EndpointConfigurationResponse$ = EndpointConfigurationResponse$;
4388
+ exports.EndpointDisplayContent$ = EndpointDisplayContent$;
4389
+ exports.EndpointDisplayContentResponse$ = EndpointDisplayContentResponse$;
1612
4390
  exports.EndpointType = EndpointType;
4391
+ exports.ExportApi$ = ExportApi$;
1613
4392
  exports.ExportApiCommand = ExportApiCommand;
4393
+ exports.ExportApiRequest$ = ExportApiRequest$;
4394
+ exports.ExportApiResponse$ = ExportApiResponse$;
4395
+ exports.GetApi$ = GetApi$;
1614
4396
  exports.GetApiCommand = GetApiCommand;
4397
+ exports.GetApiMapping$ = GetApiMapping$;
1615
4398
  exports.GetApiMappingCommand = GetApiMappingCommand;
4399
+ exports.GetApiMappingRequest$ = GetApiMappingRequest$;
4400
+ exports.GetApiMappingResponse$ = GetApiMappingResponse$;
4401
+ exports.GetApiMappings$ = GetApiMappings$;
1616
4402
  exports.GetApiMappingsCommand = GetApiMappingsCommand;
4403
+ exports.GetApiMappingsRequest$ = GetApiMappingsRequest$;
4404
+ exports.GetApiMappingsResponse$ = GetApiMappingsResponse$;
4405
+ exports.GetApiRequest$ = GetApiRequest$;
4406
+ exports.GetApiResponse$ = GetApiResponse$;
4407
+ exports.GetApis$ = GetApis$;
1617
4408
  exports.GetApisCommand = GetApisCommand;
4409
+ exports.GetApisRequest$ = GetApisRequest$;
4410
+ exports.GetApisResponse$ = GetApisResponse$;
4411
+ exports.GetAuthorizer$ = GetAuthorizer$;
1618
4412
  exports.GetAuthorizerCommand = GetAuthorizerCommand;
4413
+ exports.GetAuthorizerRequest$ = GetAuthorizerRequest$;
4414
+ exports.GetAuthorizerResponse$ = GetAuthorizerResponse$;
4415
+ exports.GetAuthorizers$ = GetAuthorizers$;
1619
4416
  exports.GetAuthorizersCommand = GetAuthorizersCommand;
4417
+ exports.GetAuthorizersRequest$ = GetAuthorizersRequest$;
4418
+ exports.GetAuthorizersResponse$ = GetAuthorizersResponse$;
4419
+ exports.GetDeployment$ = GetDeployment$;
1620
4420
  exports.GetDeploymentCommand = GetDeploymentCommand;
4421
+ exports.GetDeploymentRequest$ = GetDeploymentRequest$;
4422
+ exports.GetDeploymentResponse$ = GetDeploymentResponse$;
4423
+ exports.GetDeployments$ = GetDeployments$;
1621
4424
  exports.GetDeploymentsCommand = GetDeploymentsCommand;
4425
+ exports.GetDeploymentsRequest$ = GetDeploymentsRequest$;
4426
+ exports.GetDeploymentsResponse$ = GetDeploymentsResponse$;
4427
+ exports.GetDomainName$ = GetDomainName$;
1622
4428
  exports.GetDomainNameCommand = GetDomainNameCommand;
4429
+ exports.GetDomainNameRequest$ = GetDomainNameRequest$;
4430
+ exports.GetDomainNameResponse$ = GetDomainNameResponse$;
4431
+ exports.GetDomainNames$ = GetDomainNames$;
1623
4432
  exports.GetDomainNamesCommand = GetDomainNamesCommand;
4433
+ exports.GetDomainNamesRequest$ = GetDomainNamesRequest$;
4434
+ exports.GetDomainNamesResponse$ = GetDomainNamesResponse$;
4435
+ exports.GetIntegration$ = GetIntegration$;
1624
4436
  exports.GetIntegrationCommand = GetIntegrationCommand;
4437
+ exports.GetIntegrationRequest$ = GetIntegrationRequest$;
4438
+ exports.GetIntegrationResponse$ = GetIntegrationResponse$;
1625
4439
  exports.GetIntegrationResponseCommand = GetIntegrationResponseCommand;
4440
+ exports.GetIntegrationResponseRequest$ = GetIntegrationResponseRequest$;
4441
+ exports.GetIntegrationResponseResponse$ = GetIntegrationResponseResponse$;
4442
+ exports.GetIntegrationResponses$ = GetIntegrationResponses$;
1626
4443
  exports.GetIntegrationResponsesCommand = GetIntegrationResponsesCommand;
4444
+ exports.GetIntegrationResponsesRequest$ = GetIntegrationResponsesRequest$;
4445
+ exports.GetIntegrationResponsesResponse$ = GetIntegrationResponsesResponse$;
4446
+ exports.GetIntegrationResult$ = GetIntegrationResult$;
4447
+ exports.GetIntegrations$ = GetIntegrations$;
1627
4448
  exports.GetIntegrationsCommand = GetIntegrationsCommand;
4449
+ exports.GetIntegrationsRequest$ = GetIntegrationsRequest$;
4450
+ exports.GetIntegrationsResponse$ = GetIntegrationsResponse$;
4451
+ exports.GetModel$ = GetModel$;
1628
4452
  exports.GetModelCommand = GetModelCommand;
4453
+ exports.GetModelRequest$ = GetModelRequest$;
4454
+ exports.GetModelResponse$ = GetModelResponse$;
4455
+ exports.GetModelTemplate$ = GetModelTemplate$;
1629
4456
  exports.GetModelTemplateCommand = GetModelTemplateCommand;
4457
+ exports.GetModelTemplateRequest$ = GetModelTemplateRequest$;
4458
+ exports.GetModelTemplateResponse$ = GetModelTemplateResponse$;
4459
+ exports.GetModels$ = GetModels$;
1630
4460
  exports.GetModelsCommand = GetModelsCommand;
4461
+ exports.GetModelsRequest$ = GetModelsRequest$;
4462
+ exports.GetModelsResponse$ = GetModelsResponse$;
4463
+ exports.GetPortal$ = GetPortal$;
1631
4464
  exports.GetPortalCommand = GetPortalCommand;
4465
+ exports.GetPortalProduct$ = GetPortalProduct$;
1632
4466
  exports.GetPortalProductCommand = GetPortalProductCommand;
4467
+ exports.GetPortalProductRequest$ = GetPortalProductRequest$;
4468
+ exports.GetPortalProductResponse$ = GetPortalProductResponse$;
4469
+ exports.GetPortalProductSharingPolicy$ = GetPortalProductSharingPolicy$;
1633
4470
  exports.GetPortalProductSharingPolicyCommand = GetPortalProductSharingPolicyCommand;
4471
+ exports.GetPortalProductSharingPolicyRequest$ = GetPortalProductSharingPolicyRequest$;
4472
+ exports.GetPortalProductSharingPolicyResponse$ = GetPortalProductSharingPolicyResponse$;
4473
+ exports.GetPortalRequest$ = GetPortalRequest$;
4474
+ exports.GetPortalResponse$ = GetPortalResponse$;
4475
+ exports.GetProductPage$ = GetProductPage$;
1634
4476
  exports.GetProductPageCommand = GetProductPageCommand;
4477
+ exports.GetProductPageRequest$ = GetProductPageRequest$;
4478
+ exports.GetProductPageResponse$ = GetProductPageResponse$;
4479
+ exports.GetProductRestEndpointPage$ = GetProductRestEndpointPage$;
1635
4480
  exports.GetProductRestEndpointPageCommand = GetProductRestEndpointPageCommand;
4481
+ exports.GetProductRestEndpointPageRequest$ = GetProductRestEndpointPageRequest$;
4482
+ exports.GetProductRestEndpointPageResponse$ = GetProductRestEndpointPageResponse$;
4483
+ exports.GetRoute$ = GetRoute$;
1636
4484
  exports.GetRouteCommand = GetRouteCommand;
4485
+ exports.GetRouteRequest$ = GetRouteRequest$;
4486
+ exports.GetRouteResponse$ = GetRouteResponse$;
1637
4487
  exports.GetRouteResponseCommand = GetRouteResponseCommand;
4488
+ exports.GetRouteResponseRequest$ = GetRouteResponseRequest$;
4489
+ exports.GetRouteResponseResponse$ = GetRouteResponseResponse$;
4490
+ exports.GetRouteResponses$ = GetRouteResponses$;
1638
4491
  exports.GetRouteResponsesCommand = GetRouteResponsesCommand;
4492
+ exports.GetRouteResponsesRequest$ = GetRouteResponsesRequest$;
4493
+ exports.GetRouteResponsesResponse$ = GetRouteResponsesResponse$;
4494
+ exports.GetRouteResult$ = GetRouteResult$;
4495
+ exports.GetRoutes$ = GetRoutes$;
1639
4496
  exports.GetRoutesCommand = GetRoutesCommand;
4497
+ exports.GetRoutesRequest$ = GetRoutesRequest$;
4498
+ exports.GetRoutesResponse$ = GetRoutesResponse$;
4499
+ exports.GetRoutingRule$ = GetRoutingRule$;
1640
4500
  exports.GetRoutingRuleCommand = GetRoutingRuleCommand;
4501
+ exports.GetRoutingRuleRequest$ = GetRoutingRuleRequest$;
4502
+ exports.GetRoutingRuleResponse$ = GetRoutingRuleResponse$;
4503
+ exports.GetStage$ = GetStage$;
1641
4504
  exports.GetStageCommand = GetStageCommand;
4505
+ exports.GetStageRequest$ = GetStageRequest$;
4506
+ exports.GetStageResponse$ = GetStageResponse$;
4507
+ exports.GetStages$ = GetStages$;
1642
4508
  exports.GetStagesCommand = GetStagesCommand;
4509
+ exports.GetStagesRequest$ = GetStagesRequest$;
4510
+ exports.GetStagesResponse$ = GetStagesResponse$;
4511
+ exports.GetTags$ = GetTags$;
1643
4512
  exports.GetTagsCommand = GetTagsCommand;
4513
+ exports.GetTagsRequest$ = GetTagsRequest$;
4514
+ exports.GetTagsResponse$ = GetTagsResponse$;
4515
+ exports.GetVpcLink$ = GetVpcLink$;
1644
4516
  exports.GetVpcLinkCommand = GetVpcLinkCommand;
4517
+ exports.GetVpcLinkRequest$ = GetVpcLinkRequest$;
4518
+ exports.GetVpcLinkResponse$ = GetVpcLinkResponse$;
4519
+ exports.GetVpcLinks$ = GetVpcLinks$;
1645
4520
  exports.GetVpcLinksCommand = GetVpcLinksCommand;
4521
+ exports.GetVpcLinksRequest$ = GetVpcLinksRequest$;
4522
+ exports.GetVpcLinksResponse$ = GetVpcLinksResponse$;
4523
+ exports.IdentifierParts$ = IdentifierParts$;
4524
+ exports.ImportApi$ = ImportApi$;
1646
4525
  exports.ImportApiCommand = ImportApiCommand;
4526
+ exports.ImportApiRequest$ = ImportApiRequest$;
4527
+ exports.ImportApiResponse$ = ImportApiResponse$;
4528
+ exports.Integration$ = Integration$;
4529
+ exports.IntegrationResponse$ = IntegrationResponse$;
1647
4530
  exports.IntegrationType = IntegrationType;
1648
4531
  exports.IpAddressType = IpAddressType;
4532
+ exports.JWTConfiguration$ = JWTConfiguration$;
4533
+ exports.ListPortalProducts$ = ListPortalProducts$;
1649
4534
  exports.ListPortalProductsCommand = ListPortalProductsCommand;
4535
+ exports.ListPortalProductsRequest$ = ListPortalProductsRequest$;
4536
+ exports.ListPortalProductsResponse$ = ListPortalProductsResponse$;
4537
+ exports.ListPortals$ = ListPortals$;
1650
4538
  exports.ListPortalsCommand = ListPortalsCommand;
4539
+ exports.ListPortalsRequest$ = ListPortalsRequest$;
4540
+ exports.ListPortalsResponse$ = ListPortalsResponse$;
4541
+ exports.ListProductPages$ = ListProductPages$;
1651
4542
  exports.ListProductPagesCommand = ListProductPagesCommand;
4543
+ exports.ListProductPagesRequest$ = ListProductPagesRequest$;
4544
+ exports.ListProductPagesResponse$ = ListProductPagesResponse$;
4545
+ exports.ListProductRestEndpointPages$ = ListProductRestEndpointPages$;
1652
4546
  exports.ListProductRestEndpointPagesCommand = ListProductRestEndpointPagesCommand;
4547
+ exports.ListProductRestEndpointPagesRequest$ = ListProductRestEndpointPagesRequest$;
4548
+ exports.ListProductRestEndpointPagesResponse$ = ListProductRestEndpointPagesResponse$;
4549
+ exports.ListRoutingRules$ = ListRoutingRules$;
1653
4550
  exports.ListRoutingRulesCommand = ListRoutingRulesCommand;
4551
+ exports.ListRoutingRulesRequest$ = ListRoutingRulesRequest$;
4552
+ exports.ListRoutingRulesResponse$ = ListRoutingRulesResponse$;
1654
4553
  exports.LoggingLevel = LoggingLevel;
4554
+ exports.Model$ = Model$;
4555
+ exports.MutualTlsAuthentication$ = MutualTlsAuthentication$;
4556
+ exports.MutualTlsAuthenticationInput$ = MutualTlsAuthenticationInput$;
4557
+ exports.None$ = None$;
4558
+ exports.NotFoundException = NotFoundException;
4559
+ exports.NotFoundException$ = NotFoundException$;
4560
+ exports.ParameterConstraints$ = ParameterConstraints$;
1655
4561
  exports.PassthroughBehavior = PassthroughBehavior;
4562
+ exports.PortalContent$ = PortalContent$;
4563
+ exports.PortalProductSummary$ = PortalProductSummary$;
4564
+ exports.PortalSummary$ = PortalSummary$;
4565
+ exports.PortalTheme$ = PortalTheme$;
4566
+ exports.Preview$ = Preview$;
4567
+ exports.PreviewPortal$ = PreviewPortal$;
1656
4568
  exports.PreviewPortalCommand = PreviewPortalCommand;
4569
+ exports.PreviewPortalRequest$ = PreviewPortalRequest$;
4570
+ exports.PreviewPortalResponse$ = PreviewPortalResponse$;
1657
4571
  exports.PreviewStatus = PreviewStatus;
4572
+ exports.ProductPageSummaryNoBody$ = ProductPageSummaryNoBody$;
4573
+ exports.ProductRestEndpointPageSummaryNoBody$ = ProductRestEndpointPageSummaryNoBody$;
1658
4574
  exports.ProtocolType = ProtocolType;
4575
+ exports.PublishPortal$ = PublishPortal$;
1659
4576
  exports.PublishPortalCommand = PublishPortalCommand;
4577
+ exports.PublishPortalRequest$ = PublishPortalRequest$;
4578
+ exports.PublishPortalResponse$ = PublishPortalResponse$;
1660
4579
  exports.PublishStatus = PublishStatus;
4580
+ exports.PutPortalProductSharingPolicy$ = PutPortalProductSharingPolicy$;
1661
4581
  exports.PutPortalProductSharingPolicyCommand = PutPortalProductSharingPolicyCommand;
4582
+ exports.PutPortalProductSharingPolicyRequest$ = PutPortalProductSharingPolicyRequest$;
4583
+ exports.PutPortalProductSharingPolicyResponse$ = PutPortalProductSharingPolicyResponse$;
4584
+ exports.PutRoutingRule$ = PutRoutingRule$;
1662
4585
  exports.PutRoutingRuleCommand = PutRoutingRuleCommand;
4586
+ exports.PutRoutingRuleRequest$ = PutRoutingRuleRequest$;
4587
+ exports.PutRoutingRuleResponse$ = PutRoutingRuleResponse$;
4588
+ exports.ReimportApi$ = ReimportApi$;
1663
4589
  exports.ReimportApiCommand = ReimportApiCommand;
4590
+ exports.ReimportApiRequest$ = ReimportApiRequest$;
4591
+ exports.ReimportApiResponse$ = ReimportApiResponse$;
4592
+ exports.ResetAuthorizersCache$ = ResetAuthorizersCache$;
1664
4593
  exports.ResetAuthorizersCacheCommand = ResetAuthorizersCacheCommand;
4594
+ exports.ResetAuthorizersCacheRequest$ = ResetAuthorizersCacheRequest$;
4595
+ exports.RestEndpointIdentifier$ = RestEndpointIdentifier$;
4596
+ exports.Route$ = Route$;
4597
+ exports.RouteResponse$ = RouteResponse$;
4598
+ exports.RouteSettings$ = RouteSettings$;
1665
4599
  exports.RoutingMode = RoutingMode;
4600
+ exports.RoutingRule$ = RoutingRule$;
4601
+ exports.RoutingRuleAction$ = RoutingRuleAction$;
4602
+ exports.RoutingRuleActionInvokeApi$ = RoutingRuleActionInvokeApi$;
4603
+ exports.RoutingRuleCondition$ = RoutingRuleCondition$;
4604
+ exports.RoutingRuleMatchBasePaths$ = RoutingRuleMatchBasePaths$;
4605
+ exports.RoutingRuleMatchHeaderValue$ = RoutingRuleMatchHeaderValue$;
4606
+ exports.RoutingRuleMatchHeaders$ = RoutingRuleMatchHeaders$;
4607
+ exports.Section$ = Section$;
1666
4608
  exports.SecurityPolicy = SecurityPolicy;
4609
+ exports.Stage$ = Stage$;
1667
4610
  exports.Status = Status;
4611
+ exports.StatusException$ = StatusException$;
4612
+ exports.TagResource$ = TagResource$;
1668
4613
  exports.TagResourceCommand = TagResourceCommand;
4614
+ exports.TagResourceRequest$ = TagResourceRequest$;
4615
+ exports.TagResourceResponse$ = TagResourceResponse$;
4616
+ exports.TlsConfig$ = TlsConfig$;
4617
+ exports.TlsConfigInput$ = TlsConfigInput$;
4618
+ exports.TooManyRequestsException = TooManyRequestsException;
4619
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
1669
4620
  exports.TryItState = TryItState;
4621
+ exports.UntagResource$ = UntagResource$;
1670
4622
  exports.UntagResourceCommand = UntagResourceCommand;
4623
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
4624
+ exports.UpdateApi$ = UpdateApi$;
1671
4625
  exports.UpdateApiCommand = UpdateApiCommand;
4626
+ exports.UpdateApiMapping$ = UpdateApiMapping$;
1672
4627
  exports.UpdateApiMappingCommand = UpdateApiMappingCommand;
4628
+ exports.UpdateApiMappingRequest$ = UpdateApiMappingRequest$;
4629
+ exports.UpdateApiMappingResponse$ = UpdateApiMappingResponse$;
4630
+ exports.UpdateApiRequest$ = UpdateApiRequest$;
4631
+ exports.UpdateApiResponse$ = UpdateApiResponse$;
4632
+ exports.UpdateAuthorizer$ = UpdateAuthorizer$;
1673
4633
  exports.UpdateAuthorizerCommand = UpdateAuthorizerCommand;
4634
+ exports.UpdateAuthorizerRequest$ = UpdateAuthorizerRequest$;
4635
+ exports.UpdateAuthorizerResponse$ = UpdateAuthorizerResponse$;
4636
+ exports.UpdateDeployment$ = UpdateDeployment$;
1674
4637
  exports.UpdateDeploymentCommand = UpdateDeploymentCommand;
4638
+ exports.UpdateDeploymentRequest$ = UpdateDeploymentRequest$;
4639
+ exports.UpdateDeploymentResponse$ = UpdateDeploymentResponse$;
4640
+ exports.UpdateDomainName$ = UpdateDomainName$;
1675
4641
  exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
4642
+ exports.UpdateDomainNameRequest$ = UpdateDomainNameRequest$;
4643
+ exports.UpdateDomainNameResponse$ = UpdateDomainNameResponse$;
4644
+ exports.UpdateIntegration$ = UpdateIntegration$;
1676
4645
  exports.UpdateIntegrationCommand = UpdateIntegrationCommand;
4646
+ exports.UpdateIntegrationRequest$ = UpdateIntegrationRequest$;
4647
+ exports.UpdateIntegrationResponse$ = UpdateIntegrationResponse$;
1677
4648
  exports.UpdateIntegrationResponseCommand = UpdateIntegrationResponseCommand;
4649
+ exports.UpdateIntegrationResponseRequest$ = UpdateIntegrationResponseRequest$;
4650
+ exports.UpdateIntegrationResponseResponse$ = UpdateIntegrationResponseResponse$;
4651
+ exports.UpdateIntegrationResult$ = UpdateIntegrationResult$;
4652
+ exports.UpdateModel$ = UpdateModel$;
1678
4653
  exports.UpdateModelCommand = UpdateModelCommand;
4654
+ exports.UpdateModelRequest$ = UpdateModelRequest$;
4655
+ exports.UpdateModelResponse$ = UpdateModelResponse$;
4656
+ exports.UpdatePortal$ = UpdatePortal$;
1679
4657
  exports.UpdatePortalCommand = UpdatePortalCommand;
4658
+ exports.UpdatePortalProduct$ = UpdatePortalProduct$;
1680
4659
  exports.UpdatePortalProductCommand = UpdatePortalProductCommand;
4660
+ exports.UpdatePortalProductRequest$ = UpdatePortalProductRequest$;
4661
+ exports.UpdatePortalProductResponse$ = UpdatePortalProductResponse$;
4662
+ exports.UpdatePortalRequest$ = UpdatePortalRequest$;
4663
+ exports.UpdatePortalResponse$ = UpdatePortalResponse$;
4664
+ exports.UpdateProductPage$ = UpdateProductPage$;
1681
4665
  exports.UpdateProductPageCommand = UpdateProductPageCommand;
4666
+ exports.UpdateProductPageRequest$ = UpdateProductPageRequest$;
4667
+ exports.UpdateProductPageResponse$ = UpdateProductPageResponse$;
4668
+ exports.UpdateProductRestEndpointPage$ = UpdateProductRestEndpointPage$;
1682
4669
  exports.UpdateProductRestEndpointPageCommand = UpdateProductRestEndpointPageCommand;
4670
+ exports.UpdateProductRestEndpointPageRequest$ = UpdateProductRestEndpointPageRequest$;
4671
+ exports.UpdateProductRestEndpointPageResponse$ = UpdateProductRestEndpointPageResponse$;
4672
+ exports.UpdateRoute$ = UpdateRoute$;
1683
4673
  exports.UpdateRouteCommand = UpdateRouteCommand;
4674
+ exports.UpdateRouteRequest$ = UpdateRouteRequest$;
4675
+ exports.UpdateRouteResponse$ = UpdateRouteResponse$;
1684
4676
  exports.UpdateRouteResponseCommand = UpdateRouteResponseCommand;
4677
+ exports.UpdateRouteResponseRequest$ = UpdateRouteResponseRequest$;
4678
+ exports.UpdateRouteResponseResponse$ = UpdateRouteResponseResponse$;
4679
+ exports.UpdateRouteResult$ = UpdateRouteResult$;
4680
+ exports.UpdateStage$ = UpdateStage$;
1685
4681
  exports.UpdateStageCommand = UpdateStageCommand;
4682
+ exports.UpdateStageRequest$ = UpdateStageRequest$;
4683
+ exports.UpdateStageResponse$ = UpdateStageResponse$;
4684
+ exports.UpdateVpcLink$ = UpdateVpcLink$;
1686
4685
  exports.UpdateVpcLinkCommand = UpdateVpcLinkCommand;
4686
+ exports.UpdateVpcLinkRequest$ = UpdateVpcLinkRequest$;
4687
+ exports.UpdateVpcLinkResponse$ = UpdateVpcLinkResponse$;
4688
+ exports.VpcLink$ = VpcLink$;
1687
4689
  exports.VpcLinkStatus = VpcLinkStatus;
1688
4690
  exports.VpcLinkVersion = VpcLinkVersion;
4691
+ exports.errorTypeRegistries = errorTypeRegistries;
1689
4692
  exports.paginateListRoutingRules = paginateListRoutingRules;