@aws-sdk/client-api-gateway 3.986.0 → 3.988.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 +143 -2607
- package/dist-cjs/models/APIGatewayServiceException.js +12 -0
- package/dist-cjs/models/errors.js +101 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2085 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +62 -56
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -16,6 +16,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
16
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
17
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
19
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var APIGatewayServiceException = require('./models/APIGatewayServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -112,2157 +115,6 @@ class APIGatewayClient extends smithyClient.Client {
|
|
|
112
115
|
}
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
class APIGatewayServiceException extends smithyClient.ServiceException {
|
|
116
|
-
constructor(options) {
|
|
117
|
-
super(options);
|
|
118
|
-
Object.setPrototypeOf(this, APIGatewayServiceException.prototype);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
class BadRequestException extends APIGatewayServiceException {
|
|
123
|
-
name = "BadRequestException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "BadRequestException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends APIGatewayServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class LimitExceededException extends APIGatewayServiceException {
|
|
147
|
-
name = "LimitExceededException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
retryAfterSeconds;
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "LimitExceededException",
|
|
153
|
-
$fault: "client",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
157
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
class NotFoundException extends APIGatewayServiceException {
|
|
161
|
-
name = "NotFoundException";
|
|
162
|
-
$fault = "client";
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "NotFoundException",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts,
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
class TooManyRequestsException extends APIGatewayServiceException {
|
|
173
|
-
name = "TooManyRequestsException";
|
|
174
|
-
$fault = "client";
|
|
175
|
-
retryAfterSeconds;
|
|
176
|
-
constructor(opts) {
|
|
177
|
-
super({
|
|
178
|
-
name: "TooManyRequestsException",
|
|
179
|
-
$fault: "client",
|
|
180
|
-
...opts,
|
|
181
|
-
});
|
|
182
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
183
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
class UnauthorizedException extends APIGatewayServiceException {
|
|
187
|
-
name = "UnauthorizedException";
|
|
188
|
-
$fault = "client";
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "UnauthorizedException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
class ServiceUnavailableException extends APIGatewayServiceException {
|
|
199
|
-
name = "ServiceUnavailableException";
|
|
200
|
-
$fault = "server";
|
|
201
|
-
retryAfterSeconds;
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "ServiceUnavailableException",
|
|
205
|
-
$fault: "server",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
209
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
const _A = "Account";
|
|
214
|
-
const _AK = "ApiKey";
|
|
215
|
-
const _AKI = "ApiKeyIds";
|
|
216
|
-
const _AKp = "ApiKeys";
|
|
217
|
-
const _ALS = "AccessLogSettings";
|
|
218
|
-
const _AS = "ApiStage";
|
|
219
|
-
const _Ac = "Accept";
|
|
220
|
-
const _Au = "Authorizer";
|
|
221
|
-
const _Aut = "Authorizers";
|
|
222
|
-
const _BPM = "BasePathMapping";
|
|
223
|
-
const _BPMa = "BasePathMappings";
|
|
224
|
-
const _BRE = "BadRequestException";
|
|
225
|
-
const _CA = "CreateAuthorizer";
|
|
226
|
-
const _CAK = "CreateApiKey";
|
|
227
|
-
const _CAKR = "CreateApiKeyRequest";
|
|
228
|
-
const _CAR = "CreateAuthorizerRequest";
|
|
229
|
-
const _CBPM = "CreateBasePathMapping";
|
|
230
|
-
const _CBPMR = "CreateBasePathMappingRequest";
|
|
231
|
-
const _CC = "ClientCertificate";
|
|
232
|
-
const _CCl = "ClientCertificates";
|
|
233
|
-
const _CD = "Content-Disposition";
|
|
234
|
-
const _CDN = "CreateDomainName";
|
|
235
|
-
const _CDNAA = "CreateDomainNameAccessAssociation";
|
|
236
|
-
const _CDNAAR = "CreateDomainNameAccessAssociationRequest";
|
|
237
|
-
const _CDNR = "CreateDomainNameRequest";
|
|
238
|
-
const _CDP = "CreateDocumentationPart";
|
|
239
|
-
const _CDPR = "CreateDocumentationPartRequest";
|
|
240
|
-
const _CDR = "CreateDeploymentRequest";
|
|
241
|
-
const _CDV = "CreateDocumentationVersion";
|
|
242
|
-
const _CDVR = "CreateDocumentationVersionRequest";
|
|
243
|
-
const _CDr = "CreateDeployment";
|
|
244
|
-
const _CE = "ConflictException";
|
|
245
|
-
const _CM = "CreateModel";
|
|
246
|
-
const _CMR = "CreateModelRequest";
|
|
247
|
-
const _CR = "CreateResource";
|
|
248
|
-
const _CRA = "CreateRestApi";
|
|
249
|
-
const _CRAR = "CreateRestApiRequest";
|
|
250
|
-
const _CRR = "CreateResourceRequest";
|
|
251
|
-
const _CRV = "CreateRequestValidator";
|
|
252
|
-
const _CRVR = "CreateRequestValidatorRequest";
|
|
253
|
-
const _CS = "CanarySettings";
|
|
254
|
-
const _CSR = "CreateStageRequest";
|
|
255
|
-
const _CSr = "CreateStage";
|
|
256
|
-
const _CT = "Content-Type";
|
|
257
|
-
const _CUP = "CreateUsagePlan";
|
|
258
|
-
const _CUPK = "CreateUsagePlanKey";
|
|
259
|
-
const _CUPKR = "CreateUsagePlanKeyRequest";
|
|
260
|
-
const _CUPR = "CreateUsagePlanRequest";
|
|
261
|
-
const _CVL = "CreateVpcLink";
|
|
262
|
-
const _CVLR = "CreateVpcLinkRequest";
|
|
263
|
-
const _D = "Deployment";
|
|
264
|
-
const _DA = "DeleteAuthorizer";
|
|
265
|
-
const _DAK = "DeleteApiKey";
|
|
266
|
-
const _DAKR = "DeleteApiKeyRequest";
|
|
267
|
-
const _DAR = "DeleteAuthorizerRequest";
|
|
268
|
-
const _DBPM = "DeleteBasePathMapping";
|
|
269
|
-
const _DBPMR = "DeleteBasePathMappingRequest";
|
|
270
|
-
const _DCC = "DeleteClientCertificate";
|
|
271
|
-
const _DCCR = "DeleteClientCertificateRequest";
|
|
272
|
-
const _DCS = "DeploymentCanarySettings";
|
|
273
|
-
const _DD = "DeleteDeployment";
|
|
274
|
-
const _DDN = "DeleteDomainName";
|
|
275
|
-
const _DDNAA = "DeleteDomainNameAccessAssociation";
|
|
276
|
-
const _DDNAAR = "DeleteDomainNameAccessAssociationRequest";
|
|
277
|
-
const _DDNR = "DeleteDomainNameRequest";
|
|
278
|
-
const _DDP = "DeleteDocumentationPart";
|
|
279
|
-
const _DDPR = "DeleteDocumentationPartRequest";
|
|
280
|
-
const _DDR = "DeleteDeploymentRequest";
|
|
281
|
-
const _DDV = "DeleteDocumentationVersion";
|
|
282
|
-
const _DDVR = "DeleteDocumentationVersionRequest";
|
|
283
|
-
const _DGR = "DeleteGatewayResponse";
|
|
284
|
-
const _DGRR = "DeleteGatewayResponseRequest";
|
|
285
|
-
const _DI = "DeleteIntegration";
|
|
286
|
-
const _DIR = "DeleteIntegrationRequest";
|
|
287
|
-
const _DIRR = "DeleteIntegrationResponseRequest";
|
|
288
|
-
const _DIRe = "DeleteIntegrationResponse";
|
|
289
|
-
const _DM = "DeleteMethod";
|
|
290
|
-
const _DMR = "DeleteMethodRequest";
|
|
291
|
-
const _DMRR = "DeleteMethodResponseRequest";
|
|
292
|
-
const _DMRe = "DeleteModelRequest";
|
|
293
|
-
const _DMRel = "DeleteMethodResponse";
|
|
294
|
-
const _DMe = "DeleteModel";
|
|
295
|
-
const _DN = "DomainName";
|
|
296
|
-
const _DNAA = "DomainNameAccessAssociation";
|
|
297
|
-
const _DNAAo = "DomainNameAccessAssociations";
|
|
298
|
-
const _DNo = "DomainNames";
|
|
299
|
-
const _DP = "DocumentationPart";
|
|
300
|
-
const _DPI = "DocumentationPartIds";
|
|
301
|
-
const _DPL = "DocumentationPartLocation";
|
|
302
|
-
const _DPo = "DocumentationParts";
|
|
303
|
-
const _DR = "DeleteResource";
|
|
304
|
-
const _DRA = "DeleteRestApi";
|
|
305
|
-
const _DRAR = "DeleteRestApiRequest";
|
|
306
|
-
const _DRR = "DeleteResourceRequest";
|
|
307
|
-
const _DRV = "DeleteRequestValidator";
|
|
308
|
-
const _DRVR = "DeleteRequestValidatorRequest";
|
|
309
|
-
const _DS = "DeleteStage";
|
|
310
|
-
const _DSR = "DeleteStageRequest";
|
|
311
|
-
const _DUP = "DeleteUsagePlan";
|
|
312
|
-
const _DUPK = "DeleteUsagePlanKey";
|
|
313
|
-
const _DUPKR = "DeleteUsagePlanKeyRequest";
|
|
314
|
-
const _DUPR = "DeleteUsagePlanRequest";
|
|
315
|
-
const _DV = "DocumentationVersion";
|
|
316
|
-
const _DVL = "DeleteVpcLink";
|
|
317
|
-
const _DVLR = "DeleteVpcLinkRequest";
|
|
318
|
-
const _DVo = "DocumentationVersions";
|
|
319
|
-
const _De = "Deployments";
|
|
320
|
-
const _EC = "EndpointConfiguration";
|
|
321
|
-
const _ER = "ExportResponse";
|
|
322
|
-
const _FSAC = "FlushStageAuthorizersCache";
|
|
323
|
-
const _FSACR = "FlushStageAuthorizersCacheRequest";
|
|
324
|
-
const _FSC = "FlushStageCache";
|
|
325
|
-
const _FSCR = "FlushStageCacheRequest";
|
|
326
|
-
const _GA = "GetAccount";
|
|
327
|
-
const _GAK = "GetApiKey";
|
|
328
|
-
const _GAKR = "GetApiKeyRequest";
|
|
329
|
-
const _GAKRe = "GetApiKeysRequest";
|
|
330
|
-
const _GAKe = "GetApiKeys";
|
|
331
|
-
const _GAR = "GetAccountRequest";
|
|
332
|
-
const _GARe = "GetAuthorizerRequest";
|
|
333
|
-
const _GARet = "GetAuthorizersRequest";
|
|
334
|
-
const _GAe = "GetAuthorizer";
|
|
335
|
-
const _GAet = "GetAuthorizers";
|
|
336
|
-
const _GBPM = "GetBasePathMapping";
|
|
337
|
-
const _GBPMR = "GetBasePathMappingRequest";
|
|
338
|
-
const _GBPMRe = "GetBasePathMappingsRequest";
|
|
339
|
-
const _GBPMe = "GetBasePathMappings";
|
|
340
|
-
const _GCC = "GenerateClientCertificate";
|
|
341
|
-
const _GCCR = "GenerateClientCertificateRequest";
|
|
342
|
-
const _GCCRe = "GetClientCertificateRequest";
|
|
343
|
-
const _GCCRet = "GetClientCertificatesRequest";
|
|
344
|
-
const _GCCe = "GetClientCertificate";
|
|
345
|
-
const _GCCet = "GetClientCertificates";
|
|
346
|
-
const _GD = "GetDeployment";
|
|
347
|
-
const _GDN = "GetDomainName";
|
|
348
|
-
const _GDNAA = "GetDomainNameAccessAssociations";
|
|
349
|
-
const _GDNAAR = "GetDomainNameAccessAssociationsRequest";
|
|
350
|
-
const _GDNR = "GetDomainNameRequest";
|
|
351
|
-
const _GDNRe = "GetDomainNamesRequest";
|
|
352
|
-
const _GDNe = "GetDomainNames";
|
|
353
|
-
const _GDP = "GetDocumentationPart";
|
|
354
|
-
const _GDPR = "GetDocumentationPartRequest";
|
|
355
|
-
const _GDPRe = "GetDocumentationPartsRequest";
|
|
356
|
-
const _GDPe = "GetDocumentationParts";
|
|
357
|
-
const _GDR = "GetDeploymentRequest";
|
|
358
|
-
const _GDRe = "GetDeploymentsRequest";
|
|
359
|
-
const _GDV = "GetDocumentationVersion";
|
|
360
|
-
const _GDVR = "GetDocumentationVersionRequest";
|
|
361
|
-
const _GDVRe = "GetDocumentationVersionsRequest";
|
|
362
|
-
const _GDVe = "GetDocumentationVersions";
|
|
363
|
-
const _GDe = "GetDeployments";
|
|
364
|
-
const _GE = "GetExport";
|
|
365
|
-
const _GER = "GetExportRequest";
|
|
366
|
-
const _GGR = "GetGatewayResponse";
|
|
367
|
-
const _GGRR = "GetGatewayResponseRequest";
|
|
368
|
-
const _GGRRe = "GetGatewayResponsesRequest";
|
|
369
|
-
const _GGRe = "GetGatewayResponses";
|
|
370
|
-
const _GI = "GetIntegration";
|
|
371
|
-
const _GIR = "GetIntegrationRequest";
|
|
372
|
-
const _GIRR = "GetIntegrationResponseRequest";
|
|
373
|
-
const _GIRe = "GetIntegrationResponse";
|
|
374
|
-
const _GM = "GetMethod";
|
|
375
|
-
const _GMR = "GetMethodRequest";
|
|
376
|
-
const _GMRR = "GetMethodResponseRequest";
|
|
377
|
-
const _GMRe = "GetModelRequest";
|
|
378
|
-
const _GMRet = "GetModelsRequest";
|
|
379
|
-
const _GMRete = "GetMethodResponse";
|
|
380
|
-
const _GMT = "GetModelTemplate";
|
|
381
|
-
const _GMTR = "GetModelTemplateRequest";
|
|
382
|
-
const _GMe = "GetModel";
|
|
383
|
-
const _GMet = "GetModels";
|
|
384
|
-
const _GR = "GatewayResponse";
|
|
385
|
-
const _GRA = "GetRestApi";
|
|
386
|
-
const _GRAR = "GetRestApiRequest";
|
|
387
|
-
const _GRARe = "GetRestApisRequest";
|
|
388
|
-
const _GRAe = "GetRestApis";
|
|
389
|
-
const _GRR = "GetResourceRequest";
|
|
390
|
-
const _GRRe = "GetResourcesRequest";
|
|
391
|
-
const _GRV = "GetRequestValidator";
|
|
392
|
-
const _GRVR = "GetRequestValidatorRequest";
|
|
393
|
-
const _GRVRe = "GetRequestValidatorsRequest";
|
|
394
|
-
const _GRVe = "GetRequestValidators";
|
|
395
|
-
const _GRa = "GatewayResponses";
|
|
396
|
-
const _GRe = "GetResource";
|
|
397
|
-
const _GRet = "GetResources";
|
|
398
|
-
const _GS = "GetSdk";
|
|
399
|
-
const _GSR = "GetSdkRequest";
|
|
400
|
-
const _GSRe = "GetStageRequest";
|
|
401
|
-
const _GSRet = "GetStagesRequest";
|
|
402
|
-
const _GST = "GetSdkType";
|
|
403
|
-
const _GSTR = "GetSdkTypeRequest";
|
|
404
|
-
const _GSTRe = "GetSdkTypesRequest";
|
|
405
|
-
const _GSTe = "GetSdkTypes";
|
|
406
|
-
const _GSe = "GetStage";
|
|
407
|
-
const _GSet = "GetStages";
|
|
408
|
-
const _GT = "GetTags";
|
|
409
|
-
const _GTR = "GetTagsRequest";
|
|
410
|
-
const _GU = "GetUsage";
|
|
411
|
-
const _GUP = "GetUsagePlan";
|
|
412
|
-
const _GUPK = "GetUsagePlanKey";
|
|
413
|
-
const _GUPKR = "GetUsagePlanKeyRequest";
|
|
414
|
-
const _GUPKRe = "GetUsagePlanKeysRequest";
|
|
415
|
-
const _GUPKe = "GetUsagePlanKeys";
|
|
416
|
-
const _GUPR = "GetUsagePlanRequest";
|
|
417
|
-
const _GUPRe = "GetUsagePlansRequest";
|
|
418
|
-
const _GUPe = "GetUsagePlans";
|
|
419
|
-
const _GUR = "GetUsageRequest";
|
|
420
|
-
const _GVL = "GetVpcLink";
|
|
421
|
-
const _GVLR = "GetVpcLinkRequest";
|
|
422
|
-
const _GVLRe = "GetVpcLinksRequest";
|
|
423
|
-
const _GVLe = "GetVpcLinks";
|
|
424
|
-
const _I = "Integration";
|
|
425
|
-
const _IAK = "ImportApiKeys";
|
|
426
|
-
const _IAKR = "ImportApiKeysRequest";
|
|
427
|
-
const _IDP = "ImportDocumentationParts";
|
|
428
|
-
const _IDPR = "ImportDocumentationPartsRequest";
|
|
429
|
-
const _IR = "IntegrationResponse";
|
|
430
|
-
const _IRA = "ImportRestApi";
|
|
431
|
-
const _IRAR = "ImportRestApiRequest";
|
|
432
|
-
const _LEE = "LimitExceededException";
|
|
433
|
-
const _LOA = "ListOfAuthorizer";
|
|
434
|
-
const _LOAK = "ListOfApiKey";
|
|
435
|
-
const _LOAS = "ListOfApiStage";
|
|
436
|
-
const _LOBPM = "ListOfBasePathMapping";
|
|
437
|
-
const _LOCC = "ListOfClientCertificate";
|
|
438
|
-
const _LOD = "ListOfDeployment";
|
|
439
|
-
const _LODN = "ListOfDomainName";
|
|
440
|
-
const _LODNAA = "ListOfDomainNameAccessAssociation";
|
|
441
|
-
const _LODP = "ListOfDocumentationPart";
|
|
442
|
-
const _LODV = "ListOfDocumentationVersion";
|
|
443
|
-
const _LOGR = "ListOfGatewayResponse";
|
|
444
|
-
const _LOM = "ListOfModel";
|
|
445
|
-
const _LOPO = "ListOfPatchOperation";
|
|
446
|
-
const _LOR = "ListOfResource";
|
|
447
|
-
const _LORA = "ListOfRestApi";
|
|
448
|
-
const _LORV = "ListOfRequestValidator";
|
|
449
|
-
const _LOS = "ListOfStage";
|
|
450
|
-
const _LOSCP = "ListOfSdkConfigurationProperty";
|
|
451
|
-
const _LOSK = "ListOfStageKeys";
|
|
452
|
-
const _LOST = "ListOfSdkType";
|
|
453
|
-
const _LOU = "ListOfUsage";
|
|
454
|
-
const _LOUP = "ListOfUsagePlan";
|
|
455
|
-
const _LOUPK = "ListOfUsagePlanKey";
|
|
456
|
-
const _LOVL = "ListOfVpcLink";
|
|
457
|
-
const _M = "Method";
|
|
458
|
-
const _MOASTS = "MapOfApiStageThrottleSettings";
|
|
459
|
-
const _MOIR = "MapOfIntegrationResponse";
|
|
460
|
-
const _MOKU = "MapOfKeyUsages";
|
|
461
|
-
const _MOM = "MapOfMethod";
|
|
462
|
-
const _MOMR = "MapOfMethodResponse";
|
|
463
|
-
const _MOMS = "MapOfMethodSettings";
|
|
464
|
-
const _MOMSa = "MapOfMethodSnapshot";
|
|
465
|
-
const _MOSTL = "MapOfStringToList";
|
|
466
|
-
const _MR = "MethodResponse";
|
|
467
|
-
const _MS = "MethodSetting";
|
|
468
|
-
const _MSe = "MethodSnapshot";
|
|
469
|
-
const _MTA = "MutualTlsAuthentication";
|
|
470
|
-
const _MTAI = "MutualTlsAuthenticationInput";
|
|
471
|
-
const _Mo = "Model";
|
|
472
|
-
const _Mod = "Models";
|
|
473
|
-
const _NFE = "NotFoundException";
|
|
474
|
-
const _PGR = "PutGatewayResponse";
|
|
475
|
-
const _PGRR = "PutGatewayResponseRequest";
|
|
476
|
-
const _PI = "PutIntegration";
|
|
477
|
-
const _PIR = "PutIntegrationRequest";
|
|
478
|
-
const _PIRR = "PutIntegrationResponseRequest";
|
|
479
|
-
const _PIRu = "PutIntegrationResponse";
|
|
480
|
-
const _PM = "PutMethod";
|
|
481
|
-
const _PMR = "PutMethodRequest";
|
|
482
|
-
const _PMRR = "PutMethodResponseRequest";
|
|
483
|
-
const _PMRu = "PutMethodResponse";
|
|
484
|
-
const _PO = "PatchOperation";
|
|
485
|
-
const _PRA = "PutRestApi";
|
|
486
|
-
const _PRAR = "PutRestApiRequest";
|
|
487
|
-
const _PTMOMS = "PathToMapOfMethodSnapshot";
|
|
488
|
-
const _QS = "QuotaSettings";
|
|
489
|
-
const _R = "Resource";
|
|
490
|
-
const _RA = "Retry-After";
|
|
491
|
-
const _RAe = "RestApi";
|
|
492
|
-
const _RAes = "RestApis";
|
|
493
|
-
const _RDNAA = "RejectDomainNameAccessAssociation";
|
|
494
|
-
const _RDNAAR = "RejectDomainNameAccessAssociationRequest";
|
|
495
|
-
const _RV = "RequestValidator";
|
|
496
|
-
const _RVe = "RequestValidators";
|
|
497
|
-
const _Re = "Resources";
|
|
498
|
-
const _S = "Stage";
|
|
499
|
-
const _SCP = "SdkConfigurationProperty";
|
|
500
|
-
const _SK = "StageKey";
|
|
501
|
-
const _SR = "SdkResponse";
|
|
502
|
-
const _ST = "SdkType";
|
|
503
|
-
const _STd = "SdkTypes";
|
|
504
|
-
const _SUE = "ServiceUnavailableException";
|
|
505
|
-
const _St = "Stages";
|
|
506
|
-
const _T = "Tags";
|
|
507
|
-
const _TC = "TlsConfig";
|
|
508
|
-
const _TIA = "TestInvokeAuthorizer";
|
|
509
|
-
const _TIAR = "TestInvokeAuthorizerRequest";
|
|
510
|
-
const _TIARe = "TestInvokeAuthorizerResponse";
|
|
511
|
-
const _TIM = "TestInvokeMethod";
|
|
512
|
-
const _TIMR = "TestInvokeMethodRequest";
|
|
513
|
-
const _TIMRe = "TestInvokeMethodResponse";
|
|
514
|
-
const _TMRE = "TooManyRequestsException";
|
|
515
|
-
const _TR = "TagResource";
|
|
516
|
-
const _TRR = "TagResourceRequest";
|
|
517
|
-
const _TS = "ThrottleSettings";
|
|
518
|
-
const _Te = "Template";
|
|
519
|
-
const _U = "Usage";
|
|
520
|
-
const _UA = "UpdateAccount";
|
|
521
|
-
const _UAK = "UpdateApiKey";
|
|
522
|
-
const _UAKR = "UpdateApiKeyRequest";
|
|
523
|
-
const _UAR = "UpdateAccountRequest";
|
|
524
|
-
const _UARp = "UpdateAuthorizerRequest";
|
|
525
|
-
const _UAp = "UpdateAuthorizer";
|
|
526
|
-
const _UBPM = "UpdateBasePathMapping";
|
|
527
|
-
const _UBPMR = "UpdateBasePathMappingRequest";
|
|
528
|
-
const _UCC = "UpdateClientCertificate";
|
|
529
|
-
const _UCCR = "UpdateClientCertificateRequest";
|
|
530
|
-
const _UD = "UpdateDeployment";
|
|
531
|
-
const _UDN = "UpdateDomainName";
|
|
532
|
-
const _UDNR = "UpdateDomainNameRequest";
|
|
533
|
-
const _UDP = "UpdateDocumentationPart";
|
|
534
|
-
const _UDPR = "UpdateDocumentationPartRequest";
|
|
535
|
-
const _UDR = "UpdateDeploymentRequest";
|
|
536
|
-
const _UDV = "UpdateDocumentationVersion";
|
|
537
|
-
const _UDVR = "UpdateDocumentationVersionRequest";
|
|
538
|
-
const _UE = "UnauthorizedException";
|
|
539
|
-
const _UGR = "UpdateGatewayResponse";
|
|
540
|
-
const _UGRR = "UpdateGatewayResponseRequest";
|
|
541
|
-
const _UI = "UpdateIntegration";
|
|
542
|
-
const _UIR = "UpdateIntegrationRequest";
|
|
543
|
-
const _UIRR = "UpdateIntegrationResponseRequest";
|
|
544
|
-
const _UIRp = "UpdateIntegrationResponse";
|
|
545
|
-
const _UM = "UpdateMethod";
|
|
546
|
-
const _UMR = "UpdateMethodRequest";
|
|
547
|
-
const _UMRR = "UpdateMethodResponseRequest";
|
|
548
|
-
const _UMRp = "UpdateModelRequest";
|
|
549
|
-
const _UMRpd = "UpdateMethodResponse";
|
|
550
|
-
const _UMp = "UpdateModel";
|
|
551
|
-
const _UP = "UsagePlan";
|
|
552
|
-
const _UPK = "UsagePlanKey";
|
|
553
|
-
const _UPKs = "UsagePlanKeys";
|
|
554
|
-
const _UPs = "UsagePlans";
|
|
555
|
-
const _UR = "UntagResource";
|
|
556
|
-
const _URA = "UpdateRestApi";
|
|
557
|
-
const _URAR = "UpdateRestApiRequest";
|
|
558
|
-
const _URR = "UntagResourceRequest";
|
|
559
|
-
const _URRp = "UpdateResourceRequest";
|
|
560
|
-
const _URV = "UpdateRequestValidator";
|
|
561
|
-
const _URVR = "UpdateRequestValidatorRequest";
|
|
562
|
-
const _URp = "UpdateResource";
|
|
563
|
-
const _US = "UpdateStage";
|
|
564
|
-
const _USR = "UpdateStageRequest";
|
|
565
|
-
const _UU = "UpdateUsage";
|
|
566
|
-
const _UUP = "UpdateUsagePlan";
|
|
567
|
-
const _UUPR = "UpdateUsagePlanRequest";
|
|
568
|
-
const _UUR = "UpdateUsageRequest";
|
|
569
|
-
const _UVL = "UpdateVpcLink";
|
|
570
|
-
const _UVLR = "UpdateVpcLinkRequest";
|
|
571
|
-
const _VL = "VpcLink";
|
|
572
|
-
const _VLp = "VpcLinks";
|
|
573
|
-
const _a = "accepts";
|
|
574
|
-
const _aAS = "accessAssociationSource";
|
|
575
|
-
const _aAST = "accessAssociationSourceType";
|
|
576
|
-
const _aC = "authorizerCredentials";
|
|
577
|
-
const _aCd = "additionalContext";
|
|
578
|
-
const _aI = "apiId";
|
|
579
|
-
const _aIu = "authorizerId";
|
|
580
|
-
const _aK = "apiKey";
|
|
581
|
-
const _aKR = "apiKeyRequired";
|
|
582
|
-
const _aKS = "apiKeySource";
|
|
583
|
-
const _aKV = "apiKeyVersion";
|
|
584
|
-
const _aLS = "accessLogSettings";
|
|
585
|
-
const _aRTIS = "authorizerResultTtlInSeconds";
|
|
586
|
-
const _aS = "apiStages";
|
|
587
|
-
const _aSM = "apiStatusMessage";
|
|
588
|
-
const _aSp = "apiSummary";
|
|
589
|
-
const _aSpi = "apiStatus";
|
|
590
|
-
const _aSu = "authorizationScopes";
|
|
591
|
-
const _aT = "authType";
|
|
592
|
-
const _aTu = "authorizationType";
|
|
593
|
-
const _aU = "authorizerUri";
|
|
594
|
-
const _au = "authorization";
|
|
595
|
-
const _b = "body";
|
|
596
|
-
const _bL = "burstLimit";
|
|
597
|
-
const _bMT = "binaryMediaTypes";
|
|
598
|
-
const _bP = "basePath";
|
|
599
|
-
const _c = "client";
|
|
600
|
-
const _cA = "certificateArn";
|
|
601
|
-
const _cB = "certificateBody";
|
|
602
|
-
const _cC = "certificateChain";
|
|
603
|
-
const _cCE = "cacheClusterEnabled";
|
|
604
|
-
const _cCI = "clientCertificateId";
|
|
605
|
-
const _cCS = "cacheClusterSize";
|
|
606
|
-
const _cCSa = "cacheClusterStatus";
|
|
607
|
-
const _cD = "createdDate";
|
|
608
|
-
const _cDE = "cacheDataEncrypted";
|
|
609
|
-
const _cDo = "contentDisposition";
|
|
610
|
-
const _cE = "cachingEnabled";
|
|
611
|
-
const _cF = "cloneFrom";
|
|
612
|
-
const _cH = "contentHandling";
|
|
613
|
-
const _cI = "customerId";
|
|
614
|
-
const _cIo = "connectionId";
|
|
615
|
-
const _cKP = "cacheKeyParameters";
|
|
616
|
-
const _cN = "certificateName";
|
|
617
|
-
const _cNa = "cacheNamespace";
|
|
618
|
-
const _cP = "configurationProperties";
|
|
619
|
-
const _cPK = "certificatePrivateKey";
|
|
620
|
-
const _cRA = "cloudwatchRoleArn";
|
|
621
|
-
const _cS = "canarySettings";
|
|
622
|
-
const _cSl = "clientStatus";
|
|
623
|
-
const _cT = "contentType";
|
|
624
|
-
const _cTIS = "cacheTtlInSeconds";
|
|
625
|
-
const _cTo = "connectionType";
|
|
626
|
-
const _cUD = "certificateUploadDate";
|
|
627
|
-
const _cl = "claims";
|
|
628
|
-
const _cr = "credentials";
|
|
629
|
-
const _d = "description";
|
|
630
|
-
const _dA = "destinationArn";
|
|
631
|
-
const _dDN = "distributionDomainName";
|
|
632
|
-
const _dEAE = "disableExecuteApiEndpoint";
|
|
633
|
-
const _dHZI = "distributionHostedZoneId";
|
|
634
|
-
const _dI = "deploymentId";
|
|
635
|
-
const _dN = "domainName";
|
|
636
|
-
const _dNA = "domainNameArn";
|
|
637
|
-
const _dNAAA = "domainNameAccessAssociationArn";
|
|
638
|
-
const _dNI = "domainNameId";
|
|
639
|
-
const _dNS = "domainNameStatus";
|
|
640
|
-
const _dNSM = "domainNameStatusMessage";
|
|
641
|
-
const _dPI = "documentationPartId";
|
|
642
|
-
const _dR = "defaultResponse";
|
|
643
|
-
const _dTE = "dataTraceEnabled";
|
|
644
|
-
const _dV = "documentationVersion";
|
|
645
|
-
const _dVe = "defaultValue";
|
|
646
|
-
const _e = "enabled";
|
|
647
|
-
const _eAM = "endpointAccessMode";
|
|
648
|
-
const _eC = "endpointConfiguration";
|
|
649
|
-
const _eD = "expirationDate";
|
|
650
|
-
const _eDn = "endDate";
|
|
651
|
-
const _eT = "exportType";
|
|
652
|
-
const _em = "embed";
|
|
653
|
-
const _er = "error";
|
|
654
|
-
const _f = "format";
|
|
655
|
-
const _fN = "friendlyName";
|
|
656
|
-
const _fOW = "failOnWarnings";
|
|
657
|
-
const _fa = "failonwarnings";
|
|
658
|
-
const _fe = "features";
|
|
659
|
-
const _fl = "flatten";
|
|
660
|
-
const _fr = "from";
|
|
661
|
-
const _gDI = "generateDistinctId";
|
|
662
|
-
const _h = "headers";
|
|
663
|
-
const _hE = "httpError";
|
|
664
|
-
const _hH = "httpHeader";
|
|
665
|
-
const _hL = "httpLabel";
|
|
666
|
-
const _hM = "httpMethod";
|
|
667
|
-
const _hQ = "httpQuery";
|
|
668
|
-
const _ht = "http";
|
|
669
|
-
const _i = "id";
|
|
670
|
-
const _iAT = "ipAddressType";
|
|
671
|
-
const _iHM = "integrationHttpMethod";
|
|
672
|
-
const _iR = "integrationResponses";
|
|
673
|
-
const _iS = "identitySource";
|
|
674
|
-
const _iSV = "insecureSkipVerification";
|
|
675
|
-
const _iT = "integrationTarget";
|
|
676
|
-
const _iV = "includeValue";
|
|
677
|
-
const _iVE = "identityValidationExpression";
|
|
678
|
-
const _iVn = "includeValues";
|
|
679
|
-
const _id = "ids";
|
|
680
|
-
const _it = "items";
|
|
681
|
-
const _ite = "item";
|
|
682
|
-
const _jN = "jsonName";
|
|
683
|
-
const _kI = "keyId";
|
|
684
|
-
const _kT = "keyType";
|
|
685
|
-
const _l = "location";
|
|
686
|
-
const _lL = "loggingLevel";
|
|
687
|
-
const _lS = "locationStatus";
|
|
688
|
-
const _lUD = "lastUpdatedDate";
|
|
689
|
-
const _la = "latency";
|
|
690
|
-
const _li = "limit";
|
|
691
|
-
const _lo = "log";
|
|
692
|
-
const _m = "message";
|
|
693
|
-
const _mCS = "minimumCompressionSize";
|
|
694
|
-
const _mE = "metricsEnabled";
|
|
695
|
-
const _mI = "methodIntegration";
|
|
696
|
-
const _mN = "modelName";
|
|
697
|
-
const _mP = "managementPolicy";
|
|
698
|
-
const _mR = "methodResponses";
|
|
699
|
-
const _mS = "methodSettings";
|
|
700
|
-
const _mTA = "mutualTlsAuthentication";
|
|
701
|
-
const _mVH = "multiValueHeaders";
|
|
702
|
-
const _me = "method";
|
|
703
|
-
const _mo = "mode";
|
|
704
|
-
const _n = "name";
|
|
705
|
-
const _nQ = "nameQuery";
|
|
706
|
-
const _o = "op";
|
|
707
|
-
const _oN = "operationName";
|
|
708
|
-
const _oVCA = "ownershipVerificationCertificateArn";
|
|
709
|
-
const _of = "offset";
|
|
710
|
-
const _p = "position";
|
|
711
|
-
const _pARN = "providerARNs";
|
|
712
|
-
const _pB = "passthroughBehavior";
|
|
713
|
-
const _pC = "productCode";
|
|
714
|
-
const _pEC = "pemEncodedCertificate";
|
|
715
|
-
const _pI = "parentId";
|
|
716
|
-
const _pIr = "principalId";
|
|
717
|
-
const _pO = "patchOperations";
|
|
718
|
-
const _pP = "pathPart";
|
|
719
|
-
const _pT = "percentTraffic";
|
|
720
|
-
const _pWQS = "pathWithQueryString";
|
|
721
|
-
const _pa = "path";
|
|
722
|
-
const _par = "parameters";
|
|
723
|
-
const _pe = "period";
|
|
724
|
-
const _po = "policy";
|
|
725
|
-
const _pr = "properties";
|
|
726
|
-
const _q = "quota";
|
|
727
|
-
const _r = "required";
|
|
728
|
-
const _rA = "resourceArn";
|
|
729
|
-
const _rAFCC = "requireAuthorizationForCacheControl";
|
|
730
|
-
const _rAI = "restApiId";
|
|
731
|
-
const _rAS = "retryAfterSeconds";
|
|
732
|
-
const _rCA = "regionalCertificateArn";
|
|
733
|
-
const _rCN = "regionalCertificateName";
|
|
734
|
-
const _rDN = "regionalDomainName";
|
|
735
|
-
const _rHM = "requestHttpMethod";
|
|
736
|
-
const _rHZI = "regionalHostedZoneId";
|
|
737
|
-
const _rI = "resourceId";
|
|
738
|
-
const _rL = "rateLimit";
|
|
739
|
-
const _rM = "routingMode";
|
|
740
|
-
const _rMe = "requestModels";
|
|
741
|
-
const _rMes = "responseModels";
|
|
742
|
-
const _rMeso = "resourceMethods";
|
|
743
|
-
const _rO = "resourceOwner";
|
|
744
|
-
const _rP = "responseParameters";
|
|
745
|
-
const _rPe = "requestParameters";
|
|
746
|
-
const _rRI = "rootResourceId";
|
|
747
|
-
const _rT = "responseType";
|
|
748
|
-
const _rTM = "responseTransferMode";
|
|
749
|
-
const _rTe = "responseTemplates";
|
|
750
|
-
const _rTeq = "requestTemplates";
|
|
751
|
-
const _rVI = "requestValidatorId";
|
|
752
|
-
const _s = "stage";
|
|
753
|
-
const _sC = "statusCode";
|
|
754
|
-
const _sD = "stageDescription";
|
|
755
|
-
const _sDt = "startDate";
|
|
756
|
-
const _sK = "stageKeys";
|
|
757
|
-
const _sM = "statusMessage";
|
|
758
|
-
const _sN = "stageName";
|
|
759
|
-
const _sP = "securityPolicy";
|
|
760
|
-
const _sPe = "selectionPattern";
|
|
761
|
-
const _sT = "sdkType";
|
|
762
|
-
const _sV = "stageVariables";
|
|
763
|
-
const _sVO = "stageVariableOverrides";
|
|
764
|
-
const _sc = "schema";
|
|
765
|
-
const _se = "server";
|
|
766
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.apigateway";
|
|
767
|
-
const _st = "status";
|
|
768
|
-
const _t = "tags";
|
|
769
|
-
const _tA = "targetArns";
|
|
770
|
-
const _tBL = "throttlingBurstLimit";
|
|
771
|
-
const _tC = "tlsConfig";
|
|
772
|
-
const _tE = "tracingEnabled";
|
|
773
|
-
const _tIM = "timeoutInMillis";
|
|
774
|
-
const _tK = "tagKeys";
|
|
775
|
-
const _tRL = "throttlingRateLimit";
|
|
776
|
-
const _tS = "throttleSettings";
|
|
777
|
-
const _tU = "truststoreUri";
|
|
778
|
-
const _tV = "truststoreVersion";
|
|
779
|
-
const _tW = "truststoreWarnings";
|
|
780
|
-
const _th = "throttle";
|
|
781
|
-
const _ty = "type";
|
|
782
|
-
const _typ = "types";
|
|
783
|
-
const _u = "uri";
|
|
784
|
-
const _uCCHS = "unauthorizedCacheControlHeaderStrategy";
|
|
785
|
-
const _uPI = "usagePlanId";
|
|
786
|
-
const _uSC = "useStageCache";
|
|
787
|
-
const _v = "value";
|
|
788
|
-
const _vEI = "vpcEndpointIds";
|
|
789
|
-
const _vLI = "vpcLinkId";
|
|
790
|
-
const _vRB = "validateRequestBody";
|
|
791
|
-
const _vRP = "validateRequestParameters";
|
|
792
|
-
const _va = "variables";
|
|
793
|
-
const _val = "values";
|
|
794
|
-
const _ve = "version";
|
|
795
|
-
const _w = "warnings";
|
|
796
|
-
const _wAA = "webAclArn";
|
|
797
|
-
const n0 = "com.amazonaws.apigateway";
|
|
798
|
-
var AccessLogSettings$ = [3, n0, _ALS,
|
|
799
|
-
0,
|
|
800
|
-
[_f, _dA],
|
|
801
|
-
[0, 0]
|
|
802
|
-
];
|
|
803
|
-
var Account$ = [3, n0, _A,
|
|
804
|
-
0,
|
|
805
|
-
[_cRA, _tS, _fe, _aKV],
|
|
806
|
-
[0, () => ThrottleSettings$, 64 | 0, 0]
|
|
807
|
-
];
|
|
808
|
-
var ApiKey$ = [3, n0, _AK,
|
|
809
|
-
0,
|
|
810
|
-
[_i, _v, _n, _cI, _d, _e, _cD, _lUD, _sK, _t],
|
|
811
|
-
[0, 0, 0, 0, 0, 2, 4, 4, 64 | 0, 128 | 0]
|
|
812
|
-
];
|
|
813
|
-
var ApiKeyIds$ = [3, n0, _AKI,
|
|
814
|
-
0,
|
|
815
|
-
[_id, _w],
|
|
816
|
-
[64 | 0, 64 | 0]
|
|
817
|
-
];
|
|
818
|
-
var ApiKeys$ = [3, n0, _AKp,
|
|
819
|
-
0,
|
|
820
|
-
[_w, _it, _p],
|
|
821
|
-
[64 | 0, [() => ListOfApiKey, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
822
|
-
];
|
|
823
|
-
var ApiStage$ = [3, n0, _AS,
|
|
824
|
-
0,
|
|
825
|
-
[_aI, _s, _th],
|
|
826
|
-
[0, 0, () => MapOfApiStageThrottleSettings]
|
|
827
|
-
];
|
|
828
|
-
var Authorizer$ = [3, n0, _Au,
|
|
829
|
-
0,
|
|
830
|
-
[_i, _n, _ty, _pARN, _aT, _aU, _aC, _iS, _iVE, _aRTIS],
|
|
831
|
-
[0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 1]
|
|
832
|
-
];
|
|
833
|
-
var Authorizers$ = [3, n0, _Aut,
|
|
834
|
-
0,
|
|
835
|
-
[_it, _p],
|
|
836
|
-
[[() => ListOfAuthorizer, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
837
|
-
];
|
|
838
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
839
|
-
{ [_er]: _c, [_hE]: 400 },
|
|
840
|
-
[_m],
|
|
841
|
-
[0]
|
|
842
|
-
];
|
|
843
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
844
|
-
var BasePathMapping$ = [3, n0, _BPM,
|
|
845
|
-
0,
|
|
846
|
-
[_bP, _rAI, _s],
|
|
847
|
-
[0, 0, 0]
|
|
848
|
-
];
|
|
849
|
-
var BasePathMappings$ = [3, n0, _BPMa,
|
|
850
|
-
0,
|
|
851
|
-
[_it, _p],
|
|
852
|
-
[[() => ListOfBasePathMapping, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
853
|
-
];
|
|
854
|
-
var CanarySettings$ = [3, n0, _CS,
|
|
855
|
-
0,
|
|
856
|
-
[_pT, _dI, _sVO, _uSC],
|
|
857
|
-
[1, 0, 128 | 0, 2]
|
|
858
|
-
];
|
|
859
|
-
var ClientCertificate$ = [3, n0, _CC,
|
|
860
|
-
0,
|
|
861
|
-
[_cCI, _d, _pEC, _cD, _eD, _t],
|
|
862
|
-
[0, 0, 0, 4, 4, 128 | 0]
|
|
863
|
-
];
|
|
864
|
-
var ClientCertificates$ = [3, n0, _CCl,
|
|
865
|
-
0,
|
|
866
|
-
[_it, _p],
|
|
867
|
-
[[() => ListOfClientCertificate, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
868
|
-
];
|
|
869
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
870
|
-
{ [_er]: _c, [_hE]: 409 },
|
|
871
|
-
[_m],
|
|
872
|
-
[0]
|
|
873
|
-
];
|
|
874
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
875
|
-
var CreateApiKeyRequest$ = [3, n0, _CAKR,
|
|
876
|
-
0,
|
|
877
|
-
[_n, _d, _e, _gDI, _v, _sK, _cI, _t],
|
|
878
|
-
[0, 0, 2, 2, 0, () => ListOfStageKeys, 0, 128 | 0]
|
|
879
|
-
];
|
|
880
|
-
var CreateAuthorizerRequest$ = [3, n0, _CAR,
|
|
881
|
-
0,
|
|
882
|
-
[_rAI, _n, _ty, _pARN, _aT, _aU, _aC, _iS, _iVE, _aRTIS],
|
|
883
|
-
[[0, 1], 0, 0, 64 | 0, 0, 0, 0, 0, 0, 1], 3
|
|
884
|
-
];
|
|
885
|
-
var CreateBasePathMappingRequest$ = [3, n0, _CBPMR,
|
|
886
|
-
0,
|
|
887
|
-
[_dN, _rAI, _dNI, _bP, _s],
|
|
888
|
-
[[0, 1], 0, [0, { [_hQ]: _dNI }], 0, 0], 2
|
|
889
|
-
];
|
|
890
|
-
var CreateDeploymentRequest$ = [3, n0, _CDR,
|
|
891
|
-
0,
|
|
892
|
-
[_rAI, _sN, _sD, _d, _cCE, _cCS, _va, _cS, _tE],
|
|
893
|
-
[[0, 1], 0, 0, 0, 2, 0, 128 | 0, () => DeploymentCanarySettings$, 2], 1
|
|
894
|
-
];
|
|
895
|
-
var CreateDocumentationPartRequest$ = [3, n0, _CDPR,
|
|
896
|
-
0,
|
|
897
|
-
[_rAI, _l, _pr],
|
|
898
|
-
[[0, 1], () => DocumentationPartLocation$, 0], 3
|
|
899
|
-
];
|
|
900
|
-
var CreateDocumentationVersionRequest$ = [3, n0, _CDVR,
|
|
901
|
-
0,
|
|
902
|
-
[_rAI, _dV, _sN, _d],
|
|
903
|
-
[[0, 1], 0, 0, 0], 2
|
|
904
|
-
];
|
|
905
|
-
var CreateDomainNameAccessAssociationRequest$ = [3, n0, _CDNAAR,
|
|
906
|
-
0,
|
|
907
|
-
[_dNA, _aAST, _aAS, _t],
|
|
908
|
-
[0, 0, 0, 128 | 0], 3
|
|
909
|
-
];
|
|
910
|
-
var CreateDomainNameRequest$ = [3, n0, _CDNR,
|
|
911
|
-
0,
|
|
912
|
-
[_dN, _cN, _cB, _cPK, _cC, _cA, _rCN, _rCA, _eC, _t, _sP, _eAM, _mTA, _oVCA, _po, _rM],
|
|
913
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration$, 128 | 0, 0, 0, () => MutualTlsAuthenticationInput$, 0, 0, 0], 1
|
|
914
|
-
];
|
|
915
|
-
var CreateModelRequest$ = [3, n0, _CMR,
|
|
916
|
-
0,
|
|
917
|
-
[_rAI, _n, _cT, _d, _sc],
|
|
918
|
-
[[0, 1], 0, 0, 0, 0], 3
|
|
919
|
-
];
|
|
920
|
-
var CreateRequestValidatorRequest$ = [3, n0, _CRVR,
|
|
921
|
-
0,
|
|
922
|
-
[_rAI, _n, _vRB, _vRP],
|
|
923
|
-
[[0, 1], 0, 2, 2], 1
|
|
924
|
-
];
|
|
925
|
-
var CreateResourceRequest$ = [3, n0, _CRR,
|
|
926
|
-
0,
|
|
927
|
-
[_rAI, _pI, _pP],
|
|
928
|
-
[[0, 1], [0, 1], 0], 3
|
|
929
|
-
];
|
|
930
|
-
var CreateRestApiRequest$ = [3, n0, _CRAR,
|
|
931
|
-
0,
|
|
932
|
-
[_n, _d, _ve, _cF, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _sP, _eAM],
|
|
933
|
-
[0, 0, 0, 0, 64 | 0, 1, 0, () => EndpointConfiguration$, 0, 128 | 0, 2, 0, 0], 1
|
|
934
|
-
];
|
|
935
|
-
var CreateStageRequest$ = [3, n0, _CSR,
|
|
936
|
-
0,
|
|
937
|
-
[_rAI, _sN, _dI, _d, _cCE, _cCS, _va, _dV, _cS, _tE, _t],
|
|
938
|
-
[[0, 1], 0, 0, 0, 2, 0, 128 | 0, 0, () => CanarySettings$, 2, 128 | 0], 3
|
|
939
|
-
];
|
|
940
|
-
var CreateUsagePlanKeyRequest$ = [3, n0, _CUPKR,
|
|
941
|
-
0,
|
|
942
|
-
[_uPI, _kI, _kT],
|
|
943
|
-
[[0, 1], 0, 0], 3
|
|
944
|
-
];
|
|
945
|
-
var CreateUsagePlanRequest$ = [3, n0, _CUPR,
|
|
946
|
-
0,
|
|
947
|
-
[_n, _d, _aS, _th, _q, _t],
|
|
948
|
-
[0, 0, () => ListOfApiStage, () => ThrottleSettings$, () => QuotaSettings$, 128 | 0], 1
|
|
949
|
-
];
|
|
950
|
-
var CreateVpcLinkRequest$ = [3, n0, _CVLR,
|
|
951
|
-
0,
|
|
952
|
-
[_n, _tA, _d, _t],
|
|
953
|
-
[0, 64 | 0, 0, 128 | 0], 2
|
|
954
|
-
];
|
|
955
|
-
var DeleteApiKeyRequest$ = [3, n0, _DAKR,
|
|
956
|
-
0,
|
|
957
|
-
[_aK],
|
|
958
|
-
[[0, 1]], 1
|
|
959
|
-
];
|
|
960
|
-
var DeleteAuthorizerRequest$ = [3, n0, _DAR,
|
|
961
|
-
0,
|
|
962
|
-
[_rAI, _aIu],
|
|
963
|
-
[[0, 1], [0, 1]], 2
|
|
964
|
-
];
|
|
965
|
-
var DeleteBasePathMappingRequest$ = [3, n0, _DBPMR,
|
|
966
|
-
0,
|
|
967
|
-
[_dN, _bP, _dNI],
|
|
968
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
|
|
969
|
-
];
|
|
970
|
-
var DeleteClientCertificateRequest$ = [3, n0, _DCCR,
|
|
971
|
-
0,
|
|
972
|
-
[_cCI],
|
|
973
|
-
[[0, 1]], 1
|
|
974
|
-
];
|
|
975
|
-
var DeleteDeploymentRequest$ = [3, n0, _DDR,
|
|
976
|
-
0,
|
|
977
|
-
[_rAI, _dI],
|
|
978
|
-
[[0, 1], [0, 1]], 2
|
|
979
|
-
];
|
|
980
|
-
var DeleteDocumentationPartRequest$ = [3, n0, _DDPR,
|
|
981
|
-
0,
|
|
982
|
-
[_rAI, _dPI],
|
|
983
|
-
[[0, 1], [0, 1]], 2
|
|
984
|
-
];
|
|
985
|
-
var DeleteDocumentationVersionRequest$ = [3, n0, _DDVR,
|
|
986
|
-
0,
|
|
987
|
-
[_rAI, _dV],
|
|
988
|
-
[[0, 1], [0, 1]], 2
|
|
989
|
-
];
|
|
990
|
-
var DeleteDomainNameAccessAssociationRequest$ = [3, n0, _DDNAAR,
|
|
991
|
-
0,
|
|
992
|
-
[_dNAAA],
|
|
993
|
-
[[0, 1]], 1
|
|
994
|
-
];
|
|
995
|
-
var DeleteDomainNameRequest$ = [3, n0, _DDNR,
|
|
996
|
-
0,
|
|
997
|
-
[_dN, _dNI],
|
|
998
|
-
[[0, 1], [0, { [_hQ]: _dNI }]], 1
|
|
999
|
-
];
|
|
1000
|
-
var DeleteGatewayResponseRequest$ = [3, n0, _DGRR,
|
|
1001
|
-
0,
|
|
1002
|
-
[_rAI, _rT],
|
|
1003
|
-
[[0, 1], [0, 1]], 2
|
|
1004
|
-
];
|
|
1005
|
-
var DeleteIntegrationRequest$ = [3, n0, _DIR,
|
|
1006
|
-
0,
|
|
1007
|
-
[_rAI, _rI, _hM],
|
|
1008
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
1009
|
-
];
|
|
1010
|
-
var DeleteIntegrationResponseRequest$ = [3, n0, _DIRR,
|
|
1011
|
-
0,
|
|
1012
|
-
[_rAI, _rI, _hM, _sC],
|
|
1013
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1014
|
-
];
|
|
1015
|
-
var DeleteMethodRequest$ = [3, n0, _DMR,
|
|
1016
|
-
0,
|
|
1017
|
-
[_rAI, _rI, _hM],
|
|
1018
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
1019
|
-
];
|
|
1020
|
-
var DeleteMethodResponseRequest$ = [3, n0, _DMRR,
|
|
1021
|
-
0,
|
|
1022
|
-
[_rAI, _rI, _hM, _sC],
|
|
1023
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1024
|
-
];
|
|
1025
|
-
var DeleteModelRequest$ = [3, n0, _DMRe,
|
|
1026
|
-
0,
|
|
1027
|
-
[_rAI, _mN],
|
|
1028
|
-
[[0, 1], [0, 1]], 2
|
|
1029
|
-
];
|
|
1030
|
-
var DeleteRequestValidatorRequest$ = [3, n0, _DRVR,
|
|
1031
|
-
0,
|
|
1032
|
-
[_rAI, _rVI],
|
|
1033
|
-
[[0, 1], [0, 1]], 2
|
|
1034
|
-
];
|
|
1035
|
-
var DeleteResourceRequest$ = [3, n0, _DRR,
|
|
1036
|
-
0,
|
|
1037
|
-
[_rAI, _rI],
|
|
1038
|
-
[[0, 1], [0, 1]], 2
|
|
1039
|
-
];
|
|
1040
|
-
var DeleteRestApiRequest$ = [3, n0, _DRAR,
|
|
1041
|
-
0,
|
|
1042
|
-
[_rAI],
|
|
1043
|
-
[[0, 1]], 1
|
|
1044
|
-
];
|
|
1045
|
-
var DeleteStageRequest$ = [3, n0, _DSR,
|
|
1046
|
-
0,
|
|
1047
|
-
[_rAI, _sN],
|
|
1048
|
-
[[0, 1], [0, 1]], 2
|
|
1049
|
-
];
|
|
1050
|
-
var DeleteUsagePlanKeyRequest$ = [3, n0, _DUPKR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_uPI, _kI],
|
|
1053
|
-
[[0, 1], [0, 1]], 2
|
|
1054
|
-
];
|
|
1055
|
-
var DeleteUsagePlanRequest$ = [3, n0, _DUPR,
|
|
1056
|
-
0,
|
|
1057
|
-
[_uPI],
|
|
1058
|
-
[[0, 1]], 1
|
|
1059
|
-
];
|
|
1060
|
-
var DeleteVpcLinkRequest$ = [3, n0, _DVLR,
|
|
1061
|
-
0,
|
|
1062
|
-
[_vLI],
|
|
1063
|
-
[[0, 1]], 1
|
|
1064
|
-
];
|
|
1065
|
-
var Deployment$ = [3, n0, _D,
|
|
1066
|
-
0,
|
|
1067
|
-
[_i, _d, _cD, _aSp],
|
|
1068
|
-
[0, 0, 4, () => PathToMapOfMethodSnapshot]
|
|
1069
|
-
];
|
|
1070
|
-
var DeploymentCanarySettings$ = [3, n0, _DCS,
|
|
1071
|
-
0,
|
|
1072
|
-
[_pT, _sVO, _uSC],
|
|
1073
|
-
[1, 128 | 0, 2]
|
|
1074
|
-
];
|
|
1075
|
-
var Deployments$ = [3, n0, _De,
|
|
1076
|
-
0,
|
|
1077
|
-
[_it, _p],
|
|
1078
|
-
[[() => ListOfDeployment, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1079
|
-
];
|
|
1080
|
-
var DocumentationPart$ = [3, n0, _DP,
|
|
1081
|
-
0,
|
|
1082
|
-
[_i, _l, _pr],
|
|
1083
|
-
[0, () => DocumentationPartLocation$, 0]
|
|
1084
|
-
];
|
|
1085
|
-
var DocumentationPartIds$ = [3, n0, _DPI,
|
|
1086
|
-
0,
|
|
1087
|
-
[_id, _w],
|
|
1088
|
-
[64 | 0, 64 | 0]
|
|
1089
|
-
];
|
|
1090
|
-
var DocumentationPartLocation$ = [3, n0, _DPL,
|
|
1091
|
-
0,
|
|
1092
|
-
[_ty, _pa, _me, _sC, _n],
|
|
1093
|
-
[0, 0, 0, 0, 0], 1
|
|
1094
|
-
];
|
|
1095
|
-
var DocumentationParts$ = [3, n0, _DPo,
|
|
1096
|
-
0,
|
|
1097
|
-
[_it, _p],
|
|
1098
|
-
[[() => ListOfDocumentationPart, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1099
|
-
];
|
|
1100
|
-
var DocumentationVersion$ = [3, n0, _DV,
|
|
1101
|
-
0,
|
|
1102
|
-
[_ve, _cD, _d],
|
|
1103
|
-
[0, 4, 0]
|
|
1104
|
-
];
|
|
1105
|
-
var DocumentationVersions$ = [3, n0, _DVo,
|
|
1106
|
-
0,
|
|
1107
|
-
[_it, _p],
|
|
1108
|
-
[[() => ListOfDocumentationVersion, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1109
|
-
];
|
|
1110
|
-
var DomainName$ = [3, n0, _DN,
|
|
1111
|
-
0,
|
|
1112
|
-
[_dN, _dNI, _dNA, _cN, _cA, _cUD, _rDN, _rHZI, _rCN, _rCA, _dDN, _dHZI, _eC, _dNS, _dNSM, _sP, _eAM, _t, _mTA, _oVCA, _mP, _po, _rM],
|
|
1113
|
-
[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, () => EndpointConfiguration$, 0, 0, 0, 0, 128 | 0, () => MutualTlsAuthentication$, 0, 0, 0, 0]
|
|
1114
|
-
];
|
|
1115
|
-
var DomainNameAccessAssociation$ = [3, n0, _DNAA,
|
|
1116
|
-
0,
|
|
1117
|
-
[_dNAAA, _dNA, _aAST, _aAS, _t],
|
|
1118
|
-
[0, 0, 0, 0, 128 | 0]
|
|
1119
|
-
];
|
|
1120
|
-
var DomainNameAccessAssociations$ = [3, n0, _DNAAo,
|
|
1121
|
-
0,
|
|
1122
|
-
[_it, _p],
|
|
1123
|
-
[[() => ListOfDomainNameAccessAssociation, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1124
|
-
];
|
|
1125
|
-
var DomainNames$ = [3, n0, _DNo,
|
|
1126
|
-
0,
|
|
1127
|
-
[_it, _p],
|
|
1128
|
-
[[() => ListOfDomainName, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1129
|
-
];
|
|
1130
|
-
var EndpointConfiguration$ = [3, n0, _EC,
|
|
1131
|
-
0,
|
|
1132
|
-
[_typ, _iAT, _vEI],
|
|
1133
|
-
[64 | 0, 0, 64 | 0]
|
|
1134
|
-
];
|
|
1135
|
-
var ExportResponse$ = [3, n0, _ER,
|
|
1136
|
-
0,
|
|
1137
|
-
[_cT, _cDo, _b],
|
|
1138
|
-
[[0, { [_hH]: _CT }], [0, { [_hH]: _CD }], [21, 16]]
|
|
1139
|
-
];
|
|
1140
|
-
var FlushStageAuthorizersCacheRequest$ = [3, n0, _FSACR,
|
|
1141
|
-
0,
|
|
1142
|
-
[_rAI, _sN],
|
|
1143
|
-
[[0, 1], [0, 1]], 2
|
|
1144
|
-
];
|
|
1145
|
-
var FlushStageCacheRequest$ = [3, n0, _FSCR,
|
|
1146
|
-
0,
|
|
1147
|
-
[_rAI, _sN],
|
|
1148
|
-
[[0, 1], [0, 1]], 2
|
|
1149
|
-
];
|
|
1150
|
-
var GatewayResponse$ = [3, n0, _GR,
|
|
1151
|
-
0,
|
|
1152
|
-
[_rT, _sC, _rP, _rTe, _dR],
|
|
1153
|
-
[0, 0, 128 | 0, 128 | 0, 2]
|
|
1154
|
-
];
|
|
1155
|
-
var GatewayResponses$ = [3, n0, _GRa,
|
|
1156
|
-
0,
|
|
1157
|
-
[_it, _p],
|
|
1158
|
-
[[() => ListOfGatewayResponse, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1159
|
-
];
|
|
1160
|
-
var GenerateClientCertificateRequest$ = [3, n0, _GCCR,
|
|
1161
|
-
0,
|
|
1162
|
-
[_d, _t],
|
|
1163
|
-
[0, 128 | 0]
|
|
1164
|
-
];
|
|
1165
|
-
var GetAccountRequest$ = [3, n0, _GAR,
|
|
1166
|
-
0,
|
|
1167
|
-
[],
|
|
1168
|
-
[]
|
|
1169
|
-
];
|
|
1170
|
-
var GetApiKeyRequest$ = [3, n0, _GAKR,
|
|
1171
|
-
0,
|
|
1172
|
-
[_aK, _iV],
|
|
1173
|
-
[[0, 1], [2, { [_hQ]: _iV }]], 1
|
|
1174
|
-
];
|
|
1175
|
-
var GetApiKeysRequest$ = [3, n0, _GAKRe,
|
|
1176
|
-
0,
|
|
1177
|
-
[_p, _li, _nQ, _cI, _iVn],
|
|
1178
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _n }], [0, { [_hQ]: _cI }], [2, { [_hQ]: _iVn }]]
|
|
1179
|
-
];
|
|
1180
|
-
var GetAuthorizerRequest$ = [3, n0, _GARe,
|
|
1181
|
-
0,
|
|
1182
|
-
[_rAI, _aIu],
|
|
1183
|
-
[[0, 1], [0, 1]], 2
|
|
1184
|
-
];
|
|
1185
|
-
var GetAuthorizersRequest$ = [3, n0, _GARet,
|
|
1186
|
-
0,
|
|
1187
|
-
[_rAI, _p, _li],
|
|
1188
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1189
|
-
];
|
|
1190
|
-
var GetBasePathMappingRequest$ = [3, n0, _GBPMR,
|
|
1191
|
-
0,
|
|
1192
|
-
[_dN, _bP, _dNI],
|
|
1193
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }]], 2
|
|
1194
|
-
];
|
|
1195
|
-
var GetBasePathMappingsRequest$ = [3, n0, _GBPMRe,
|
|
1196
|
-
0,
|
|
1197
|
-
[_dN, _dNI, _p, _li],
|
|
1198
|
-
[[0, 1], [0, { [_hQ]: _dNI }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1199
|
-
];
|
|
1200
|
-
var GetClientCertificateRequest$ = [3, n0, _GCCRe,
|
|
1201
|
-
0,
|
|
1202
|
-
[_cCI],
|
|
1203
|
-
[[0, 1]], 1
|
|
1204
|
-
];
|
|
1205
|
-
var GetClientCertificatesRequest$ = [3, n0, _GCCRet,
|
|
1206
|
-
0,
|
|
1207
|
-
[_p, _li],
|
|
1208
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1209
|
-
];
|
|
1210
|
-
var GetDeploymentRequest$ = [3, n0, _GDR,
|
|
1211
|
-
0,
|
|
1212
|
-
[_rAI, _dI, _em],
|
|
1213
|
-
[[0, 1], [0, 1], [64 | 0, { [_hQ]: _em }]], 2
|
|
1214
|
-
];
|
|
1215
|
-
var GetDeploymentsRequest$ = [3, n0, _GDRe,
|
|
1216
|
-
0,
|
|
1217
|
-
[_rAI, _p, _li],
|
|
1218
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1219
|
-
];
|
|
1220
|
-
var GetDocumentationPartRequest$ = [3, n0, _GDPR,
|
|
1221
|
-
0,
|
|
1222
|
-
[_rAI, _dPI],
|
|
1223
|
-
[[0, 1], [0, 1]], 2
|
|
1224
|
-
];
|
|
1225
|
-
var GetDocumentationPartsRequest$ = [3, n0, _GDPRe,
|
|
1226
|
-
0,
|
|
1227
|
-
[_rAI, _ty, _nQ, _pa, _p, _li, _lS],
|
|
1228
|
-
[[0, 1], [0, { [_hQ]: _ty }], [0, { [_hQ]: _n }], [0, { [_hQ]: _pa }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _lS }]], 1
|
|
1229
|
-
];
|
|
1230
|
-
var GetDocumentationVersionRequest$ = [3, n0, _GDVR,
|
|
1231
|
-
0,
|
|
1232
|
-
[_rAI, _dV],
|
|
1233
|
-
[[0, 1], [0, 1]], 2
|
|
1234
|
-
];
|
|
1235
|
-
var GetDocumentationVersionsRequest$ = [3, n0, _GDVRe,
|
|
1236
|
-
0,
|
|
1237
|
-
[_rAI, _p, _li],
|
|
1238
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1239
|
-
];
|
|
1240
|
-
var GetDomainNameAccessAssociationsRequest$ = [3, n0, _GDNAAR,
|
|
1241
|
-
0,
|
|
1242
|
-
[_p, _li, _rO],
|
|
1243
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _rO }]]
|
|
1244
|
-
];
|
|
1245
|
-
var GetDomainNameRequest$ = [3, n0, _GDNR,
|
|
1246
|
-
0,
|
|
1247
|
-
[_dN, _dNI],
|
|
1248
|
-
[[0, 1], [0, { [_hQ]: _dNI }]], 1
|
|
1249
|
-
];
|
|
1250
|
-
var GetDomainNamesRequest$ = [3, n0, _GDNRe,
|
|
1251
|
-
0,
|
|
1252
|
-
[_p, _li, _rO],
|
|
1253
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _rO }]]
|
|
1254
|
-
];
|
|
1255
|
-
var GetExportRequest$ = [3, n0, _GER,
|
|
1256
|
-
0,
|
|
1257
|
-
[_rAI, _sN, _eT, _par, _a],
|
|
1258
|
-
[[0, 1], [0, 1], [0, 1], [128 | 0, 64], [0, { [_hH]: _Ac }]], 3
|
|
1259
|
-
];
|
|
1260
|
-
var GetGatewayResponseRequest$ = [3, n0, _GGRR,
|
|
1261
|
-
0,
|
|
1262
|
-
[_rAI, _rT],
|
|
1263
|
-
[[0, 1], [0, 1]], 2
|
|
1264
|
-
];
|
|
1265
|
-
var GetGatewayResponsesRequest$ = [3, n0, _GGRRe,
|
|
1266
|
-
0,
|
|
1267
|
-
[_rAI, _p, _li],
|
|
1268
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1269
|
-
];
|
|
1270
|
-
var GetIntegrationRequest$ = [3, n0, _GIR,
|
|
1271
|
-
0,
|
|
1272
|
-
[_rAI, _rI, _hM],
|
|
1273
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
1274
|
-
];
|
|
1275
|
-
var GetIntegrationResponseRequest$ = [3, n0, _GIRR,
|
|
1276
|
-
0,
|
|
1277
|
-
[_rAI, _rI, _hM, _sC],
|
|
1278
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1279
|
-
];
|
|
1280
|
-
var GetMethodRequest$ = [3, n0, _GMR,
|
|
1281
|
-
0,
|
|
1282
|
-
[_rAI, _rI, _hM],
|
|
1283
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
1284
|
-
];
|
|
1285
|
-
var GetMethodResponseRequest$ = [3, n0, _GMRR,
|
|
1286
|
-
0,
|
|
1287
|
-
[_rAI, _rI, _hM, _sC],
|
|
1288
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
1289
|
-
];
|
|
1290
|
-
var GetModelRequest$ = [3, n0, _GMRe,
|
|
1291
|
-
0,
|
|
1292
|
-
[_rAI, _mN, _fl],
|
|
1293
|
-
[[0, 1], [0, 1], [2, { [_hQ]: _fl }]], 2
|
|
1294
|
-
];
|
|
1295
|
-
var GetModelsRequest$ = [3, n0, _GMRet,
|
|
1296
|
-
0,
|
|
1297
|
-
[_rAI, _p, _li],
|
|
1298
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1299
|
-
];
|
|
1300
|
-
var GetModelTemplateRequest$ = [3, n0, _GMTR,
|
|
1301
|
-
0,
|
|
1302
|
-
[_rAI, _mN],
|
|
1303
|
-
[[0, 1], [0, 1]], 2
|
|
1304
|
-
];
|
|
1305
|
-
var GetRequestValidatorRequest$ = [3, n0, _GRVR,
|
|
1306
|
-
0,
|
|
1307
|
-
[_rAI, _rVI],
|
|
1308
|
-
[[0, 1], [0, 1]], 2
|
|
1309
|
-
];
|
|
1310
|
-
var GetRequestValidatorsRequest$ = [3, n0, _GRVRe,
|
|
1311
|
-
0,
|
|
1312
|
-
[_rAI, _p, _li],
|
|
1313
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1314
|
-
];
|
|
1315
|
-
var GetResourceRequest$ = [3, n0, _GRR,
|
|
1316
|
-
0,
|
|
1317
|
-
[_rAI, _rI, _em],
|
|
1318
|
-
[[0, 1], [0, 1], [64 | 0, { [_hQ]: _em }]], 2
|
|
1319
|
-
];
|
|
1320
|
-
var GetResourcesRequest$ = [3, n0, _GRRe,
|
|
1321
|
-
0,
|
|
1322
|
-
[_rAI, _p, _li, _em],
|
|
1323
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [64 | 0, { [_hQ]: _em }]], 1
|
|
1324
|
-
];
|
|
1325
|
-
var GetRestApiRequest$ = [3, n0, _GRAR,
|
|
1326
|
-
0,
|
|
1327
|
-
[_rAI],
|
|
1328
|
-
[[0, 1]], 1
|
|
1329
|
-
];
|
|
1330
|
-
var GetRestApisRequest$ = [3, n0, _GRARe,
|
|
1331
|
-
0,
|
|
1332
|
-
[_p, _li],
|
|
1333
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1334
|
-
];
|
|
1335
|
-
var GetSdkRequest$ = [3, n0, _GSR,
|
|
1336
|
-
0,
|
|
1337
|
-
[_rAI, _sN, _sT, _par],
|
|
1338
|
-
[[0, 1], [0, 1], [0, 1], [128 | 0, 64]], 3
|
|
1339
|
-
];
|
|
1340
|
-
var GetSdkTypeRequest$ = [3, n0, _GSTR,
|
|
1341
|
-
0,
|
|
1342
|
-
[_i],
|
|
1343
|
-
[[0, 1]], 1
|
|
1344
|
-
];
|
|
1345
|
-
var GetSdkTypesRequest$ = [3, n0, _GSTRe,
|
|
1346
|
-
0,
|
|
1347
|
-
[_p, _li],
|
|
1348
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1349
|
-
];
|
|
1350
|
-
var GetStageRequest$ = [3, n0, _GSRe,
|
|
1351
|
-
0,
|
|
1352
|
-
[_rAI, _sN],
|
|
1353
|
-
[[0, 1], [0, 1]], 2
|
|
1354
|
-
];
|
|
1355
|
-
var GetStagesRequest$ = [3, n0, _GSRet,
|
|
1356
|
-
0,
|
|
1357
|
-
[_rAI, _dI],
|
|
1358
|
-
[[0, 1], [0, { [_hQ]: _dI }]], 1
|
|
1359
|
-
];
|
|
1360
|
-
var GetTagsRequest$ = [3, n0, _GTR,
|
|
1361
|
-
0,
|
|
1362
|
-
[_rA, _p, _li],
|
|
1363
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 1
|
|
1364
|
-
];
|
|
1365
|
-
var GetUsagePlanKeyRequest$ = [3, n0, _GUPKR,
|
|
1366
|
-
0,
|
|
1367
|
-
[_uPI, _kI],
|
|
1368
|
-
[[0, 1], [0, 1]], 2
|
|
1369
|
-
];
|
|
1370
|
-
var GetUsagePlanKeysRequest$ = [3, n0, _GUPKRe,
|
|
1371
|
-
0,
|
|
1372
|
-
[_uPI, _p, _li, _nQ],
|
|
1373
|
-
[[0, 1], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }], [0, { [_hQ]: _n }]], 1
|
|
1374
|
-
];
|
|
1375
|
-
var GetUsagePlanRequest$ = [3, n0, _GUPR,
|
|
1376
|
-
0,
|
|
1377
|
-
[_uPI],
|
|
1378
|
-
[[0, 1]], 1
|
|
1379
|
-
];
|
|
1380
|
-
var GetUsagePlansRequest$ = [3, n0, _GUPRe,
|
|
1381
|
-
0,
|
|
1382
|
-
[_p, _kI, _li],
|
|
1383
|
-
[[0, { [_hQ]: _p }], [0, { [_hQ]: _kI }], [1, { [_hQ]: _li }]]
|
|
1384
|
-
];
|
|
1385
|
-
var GetUsageRequest$ = [3, n0, _GUR,
|
|
1386
|
-
0,
|
|
1387
|
-
[_uPI, _sDt, _eDn, _kI, _p, _li],
|
|
1388
|
-
[[0, 1], [0, { [_hQ]: _sDt }], [0, { [_hQ]: _eDn }], [0, { [_hQ]: _kI }], [0, { [_hQ]: _p }], [1, { [_hQ]: _li }]], 3
|
|
1389
|
-
];
|
|
1390
|
-
var GetVpcLinkRequest$ = [3, n0, _GVLR,
|
|
1391
|
-
0,
|
|
1392
|
-
[_vLI],
|
|
1393
|
-
[[0, 1]], 1
|
|
1394
|
-
];
|
|
1395
|
-
var GetVpcLinksRequest$ = [3, n0, _GVLRe,
|
|
1396
|
-
0,
|
|
1397
|
-
[_p, _li],
|
|
1398
|
-
[[0, { [_hQ]: _p }], [1, { [_hQ]: _li }]]
|
|
1399
|
-
];
|
|
1400
|
-
var ImportApiKeysRequest$ = [3, n0, _IAKR,
|
|
1401
|
-
0,
|
|
1402
|
-
[_b, _f, _fOW],
|
|
1403
|
-
[[21, 16], [0, { [_hQ]: _f }], [2, { [_hQ]: _fa }]], 2
|
|
1404
|
-
];
|
|
1405
|
-
var ImportDocumentationPartsRequest$ = [3, n0, _IDPR,
|
|
1406
|
-
0,
|
|
1407
|
-
[_rAI, _b, _mo, _fOW],
|
|
1408
|
-
[[0, 1], [21, 16], [0, { [_hQ]: _mo }], [2, { [_hQ]: _fa }]], 2
|
|
1409
|
-
];
|
|
1410
|
-
var ImportRestApiRequest$ = [3, n0, _IRAR,
|
|
1411
|
-
0,
|
|
1412
|
-
[_b, _fOW, _par],
|
|
1413
|
-
[[21, 16], [2, { [_hQ]: _fa }], [128 | 0, 64]], 1
|
|
1414
|
-
];
|
|
1415
|
-
var Integration$ = [3, n0, _I,
|
|
1416
|
-
0,
|
|
1417
|
-
[_ty, _hM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cH, _tIM, _cNa, _cKP, _iR, _tC, _rTM, _iT],
|
|
1418
|
-
[0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 1, 0, 64 | 0, () => MapOfIntegrationResponse, () => TlsConfig$, 0, 0]
|
|
1419
|
-
];
|
|
1420
|
-
var IntegrationResponse$ = [3, n0, _IR,
|
|
1421
|
-
0,
|
|
1422
|
-
[_sC, _sPe, _rP, _rTe, _cH],
|
|
1423
|
-
[0, 0, 128 | 0, 128 | 0, 0]
|
|
1424
|
-
];
|
|
1425
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1426
|
-
{ [_er]: _c, [_hE]: 429 },
|
|
1427
|
-
[_rAS, _m],
|
|
1428
|
-
[[0, { [_hH]: _RA }], 0]
|
|
1429
|
-
];
|
|
1430
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1431
|
-
var Method$ = [3, n0, _M,
|
|
1432
|
-
0,
|
|
1433
|
-
[_hM, _aTu, _aIu, _aKR, _rVI, _oN, _rPe, _rMe, _mR, _mI, _aSu],
|
|
1434
|
-
[0, 0, 0, 2, 0, 0, 128 | 2, 128 | 0, () => MapOfMethodResponse, () => Integration$, 64 | 0]
|
|
1435
|
-
];
|
|
1436
|
-
var MethodResponse$ = [3, n0, _MR,
|
|
1437
|
-
0,
|
|
1438
|
-
[_sC, _rP, _rMes],
|
|
1439
|
-
[0, 128 | 2, 128 | 0]
|
|
1440
|
-
];
|
|
1441
|
-
var MethodSetting$ = [3, n0, _MS,
|
|
1442
|
-
0,
|
|
1443
|
-
[_mE, _lL, _dTE, _tBL, _tRL, _cE, _cTIS, _cDE, _rAFCC, _uCCHS],
|
|
1444
|
-
[2, 0, 2, 1, 1, 2, 1, 2, 2, 0]
|
|
1445
|
-
];
|
|
1446
|
-
var MethodSnapshot$ = [3, n0, _MSe,
|
|
1447
|
-
0,
|
|
1448
|
-
[_aTu, _aKR],
|
|
1449
|
-
[0, 2]
|
|
1450
|
-
];
|
|
1451
|
-
var Model$ = [3, n0, _Mo,
|
|
1452
|
-
0,
|
|
1453
|
-
[_i, _n, _d, _sc, _cT],
|
|
1454
|
-
[0, 0, 0, 0, 0]
|
|
1455
|
-
];
|
|
1456
|
-
var Models$ = [3, n0, _Mod,
|
|
1457
|
-
0,
|
|
1458
|
-
[_it, _p],
|
|
1459
|
-
[[() => ListOfModel, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1460
|
-
];
|
|
1461
|
-
var MutualTlsAuthentication$ = [3, n0, _MTA,
|
|
1462
|
-
0,
|
|
1463
|
-
[_tU, _tV, _tW],
|
|
1464
|
-
[0, 0, 64 | 0]
|
|
1465
|
-
];
|
|
1466
|
-
var MutualTlsAuthenticationInput$ = [3, n0, _MTAI,
|
|
1467
|
-
0,
|
|
1468
|
-
[_tU, _tV],
|
|
1469
|
-
[0, 0]
|
|
1470
|
-
];
|
|
1471
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
1472
|
-
{ [_er]: _c, [_hE]: 404 },
|
|
1473
|
-
[_m],
|
|
1474
|
-
[0]
|
|
1475
|
-
];
|
|
1476
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
1477
|
-
var PatchOperation$ = [3, n0, _PO,
|
|
1478
|
-
0,
|
|
1479
|
-
[_o, _pa, _v, _fr],
|
|
1480
|
-
[0, 0, 0, 0]
|
|
1481
|
-
];
|
|
1482
|
-
var PutGatewayResponseRequest$ = [3, n0, _PGRR,
|
|
1483
|
-
0,
|
|
1484
|
-
[_rAI, _rT, _sC, _rP, _rTe],
|
|
1485
|
-
[[0, 1], [0, 1], 0, 128 | 0, 128 | 0], 2
|
|
1486
|
-
];
|
|
1487
|
-
var PutIntegrationRequest$ = [3, n0, _PIR,
|
|
1488
|
-
0,
|
|
1489
|
-
[_rAI, _rI, _hM, _ty, _iHM, _u, _cTo, _cIo, _cr, _rPe, _rTeq, _pB, _cNa, _cKP, _cH, _tIM, _tC, _rTM, _iT],
|
|
1490
|
-
[[0, 1], [0, 1], [0, { [_hL]: 1, [_jN]: _rHM }], 0, [0, { [_jN]: _hM }], 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 0, 64 | 0, 0, 1, () => TlsConfig$, 0, 0], 4
|
|
1491
|
-
];
|
|
1492
|
-
var PutIntegrationResponseRequest$ = [3, n0, _PIRR,
|
|
1493
|
-
0,
|
|
1494
|
-
[_rAI, _rI, _hM, _sC, _sPe, _rP, _rTe, _cH],
|
|
1495
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], 0, 128 | 0, 128 | 0, 0], 4
|
|
1496
|
-
];
|
|
1497
|
-
var PutMethodRequest$ = [3, n0, _PMR,
|
|
1498
|
-
0,
|
|
1499
|
-
[_rAI, _rI, _hM, _aTu, _aIu, _aKR, _oN, _rPe, _rMe, _rVI, _aSu],
|
|
1500
|
-
[[0, 1], [0, 1], [0, 1], 0, 0, 2, 0, 128 | 2, 128 | 0, 0, 64 | 0], 4
|
|
1501
|
-
];
|
|
1502
|
-
var PutMethodResponseRequest$ = [3, n0, _PMRR,
|
|
1503
|
-
0,
|
|
1504
|
-
[_rAI, _rI, _hM, _sC, _rP, _rMes],
|
|
1505
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], 128 | 2, 128 | 0], 4
|
|
1506
|
-
];
|
|
1507
|
-
var PutRestApiRequest$ = [3, n0, _PRAR,
|
|
1508
|
-
0,
|
|
1509
|
-
[_rAI, _b, _mo, _fOW, _par],
|
|
1510
|
-
[[0, 1], [21, 16], [0, { [_hQ]: _mo }], [2, { [_hQ]: _fa }], [128 | 0, 64]], 2
|
|
1511
|
-
];
|
|
1512
|
-
var QuotaSettings$ = [3, n0, _QS,
|
|
1513
|
-
0,
|
|
1514
|
-
[_li, _of, _pe],
|
|
1515
|
-
[1, 1, 0]
|
|
1516
|
-
];
|
|
1517
|
-
var RejectDomainNameAccessAssociationRequest$ = [3, n0, _RDNAAR,
|
|
1518
|
-
0,
|
|
1519
|
-
[_dNAAA, _dNA],
|
|
1520
|
-
[[0, { [_hQ]: _dNAAA }], [0, { [_hQ]: _dNA }]], 2
|
|
1521
|
-
];
|
|
1522
|
-
var RequestValidator$ = [3, n0, _RV,
|
|
1523
|
-
0,
|
|
1524
|
-
[_i, _n, _vRB, _vRP],
|
|
1525
|
-
[0, 0, 2, 2]
|
|
1526
|
-
];
|
|
1527
|
-
var RequestValidators$ = [3, n0, _RVe,
|
|
1528
|
-
0,
|
|
1529
|
-
[_it, _p],
|
|
1530
|
-
[[() => ListOfRequestValidator, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1531
|
-
];
|
|
1532
|
-
var Resource$ = [3, n0, _R,
|
|
1533
|
-
0,
|
|
1534
|
-
[_i, _pI, _pP, _pa, _rMeso],
|
|
1535
|
-
[0, 0, 0, 0, () => MapOfMethod]
|
|
1536
|
-
];
|
|
1537
|
-
var Resources$ = [3, n0, _Re,
|
|
1538
|
-
0,
|
|
1539
|
-
[_it, _p],
|
|
1540
|
-
[[() => ListOfResource, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1541
|
-
];
|
|
1542
|
-
var RestApi$ = [3, n0, _RAe,
|
|
1543
|
-
0,
|
|
1544
|
-
[_i, _n, _d, _cD, _ve, _w, _bMT, _mCS, _aKS, _eC, _po, _t, _dEAE, _rRI, _sP, _eAM, _aSpi, _aSM],
|
|
1545
|
-
[0, 0, 0, 4, 0, 64 | 0, 64 | 0, 1, 0, () => EndpointConfiguration$, 0, 128 | 0, 2, 0, 0, 0, 0, 0]
|
|
1546
|
-
];
|
|
1547
|
-
var RestApis$ = [3, n0, _RAes,
|
|
1548
|
-
0,
|
|
1549
|
-
[_it, _p],
|
|
1550
|
-
[[() => ListOfRestApi, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1551
|
-
];
|
|
1552
|
-
var SdkConfigurationProperty$ = [3, n0, _SCP,
|
|
1553
|
-
0,
|
|
1554
|
-
[_n, _fN, _d, _r, _dVe],
|
|
1555
|
-
[0, 0, 0, 2, 0]
|
|
1556
|
-
];
|
|
1557
|
-
var SdkResponse$ = [3, n0, _SR,
|
|
1558
|
-
0,
|
|
1559
|
-
[_cT, _cDo, _b],
|
|
1560
|
-
[[0, { [_hH]: _CT }], [0, { [_hH]: _CD }], [21, 16]]
|
|
1561
|
-
];
|
|
1562
|
-
var SdkType$ = [3, n0, _ST,
|
|
1563
|
-
0,
|
|
1564
|
-
[_i, _fN, _d, _cP],
|
|
1565
|
-
[0, 0, 0, () => ListOfSdkConfigurationProperty]
|
|
1566
|
-
];
|
|
1567
|
-
var SdkTypes$ = [3, n0, _STd,
|
|
1568
|
-
0,
|
|
1569
|
-
[_it],
|
|
1570
|
-
[[() => ListOfSdkType, { [_jN]: _ite }]]
|
|
1571
|
-
];
|
|
1572
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1573
|
-
{ [_er]: _se, [_hE]: 503 },
|
|
1574
|
-
[_rAS, _m],
|
|
1575
|
-
[[0, { [_hH]: _RA }], 0]
|
|
1576
|
-
];
|
|
1577
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1578
|
-
var Stage$ = [3, n0, _S,
|
|
1579
|
-
0,
|
|
1580
|
-
[_dI, _cCI, _sN, _d, _cCE, _cCS, _cCSa, _mS, _va, _dV, _aLS, _cS, _tE, _wAA, _t, _cD, _lUD],
|
|
1581
|
-
[0, 0, 0, 0, 2, 0, 0, () => MapOfMethodSettings, 128 | 0, 0, () => AccessLogSettings$, () => CanarySettings$, 2, 0, 128 | 0, 4, 4]
|
|
1582
|
-
];
|
|
1583
|
-
var StageKey$ = [3, n0, _SK,
|
|
1584
|
-
0,
|
|
1585
|
-
[_rAI, _sN],
|
|
1586
|
-
[0, 0]
|
|
1587
|
-
];
|
|
1588
|
-
var Stages$ = [3, n0, _St,
|
|
1589
|
-
0,
|
|
1590
|
-
[_ite],
|
|
1591
|
-
[() => ListOfStage]
|
|
1592
|
-
];
|
|
1593
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1594
|
-
0,
|
|
1595
|
-
[_rA, _t],
|
|
1596
|
-
[[0, 1], 128 | 0], 2
|
|
1597
|
-
];
|
|
1598
|
-
var Tags$ = [3, n0, _T,
|
|
1599
|
-
0,
|
|
1600
|
-
[_t],
|
|
1601
|
-
[128 | 0]
|
|
1602
|
-
];
|
|
1603
|
-
var Template$ = [3, n0, _Te,
|
|
1604
|
-
0,
|
|
1605
|
-
[_v],
|
|
1606
|
-
[0]
|
|
1607
|
-
];
|
|
1608
|
-
var TestInvokeAuthorizerRequest$ = [3, n0, _TIAR,
|
|
1609
|
-
0,
|
|
1610
|
-
[_rAI, _aIu, _h, _mVH, _pWQS, _b, _sV, _aCd],
|
|
1611
|
-
[[0, 1], [0, 1], 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 0, 128 | 0, 128 | 0], 2
|
|
1612
|
-
];
|
|
1613
|
-
var TestInvokeAuthorizerResponse$ = [3, n0, _TIARe,
|
|
1614
|
-
0,
|
|
1615
|
-
[_cSl, _lo, _la, _pIr, _po, _au, _cl],
|
|
1616
|
-
[1, 0, 1, 0, 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 128 | 0]
|
|
1617
|
-
];
|
|
1618
|
-
var TestInvokeMethodRequest$ = [3, n0, _TIMR,
|
|
1619
|
-
0,
|
|
1620
|
-
[_rAI, _rI, _hM, _pWQS, _b, _h, _mVH, _cCI, _sV],
|
|
1621
|
-
[[0, 1], [0, 1], [0, 1], 0, 0, 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 128 | 0], 3
|
|
1622
|
-
];
|
|
1623
|
-
var TestInvokeMethodResponse$ = [3, n0, _TIMRe,
|
|
1624
|
-
0,
|
|
1625
|
-
[_st, _b, _h, _mVH, _lo, _la],
|
|
1626
|
-
[1, 0, 128 | 0, [2, n0, _MOSTL, 0, 0, 64 | 0], 0, 1]
|
|
1627
|
-
];
|
|
1628
|
-
var ThrottleSettings$ = [3, n0, _TS,
|
|
1629
|
-
0,
|
|
1630
|
-
[_bL, _rL],
|
|
1631
|
-
[1, 1]
|
|
1632
|
-
];
|
|
1633
|
-
var TlsConfig$ = [3, n0, _TC,
|
|
1634
|
-
0,
|
|
1635
|
-
[_iSV],
|
|
1636
|
-
[2]
|
|
1637
|
-
];
|
|
1638
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1639
|
-
{ [_er]: _c, [_hE]: 429 },
|
|
1640
|
-
[_rAS, _m],
|
|
1641
|
-
[[0, { [_hH]: _RA }], 0]
|
|
1642
|
-
];
|
|
1643
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1644
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
1645
|
-
{ [_er]: _c, [_hE]: 401 },
|
|
1646
|
-
[_m],
|
|
1647
|
-
[0]
|
|
1648
|
-
];
|
|
1649
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
1650
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1651
|
-
0,
|
|
1652
|
-
[_rA, _tK],
|
|
1653
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1654
|
-
];
|
|
1655
|
-
var UpdateAccountRequest$ = [3, n0, _UAR,
|
|
1656
|
-
0,
|
|
1657
|
-
[_pO],
|
|
1658
|
-
[() => ListOfPatchOperation]
|
|
1659
|
-
];
|
|
1660
|
-
var UpdateApiKeyRequest$ = [3, n0, _UAKR,
|
|
1661
|
-
0,
|
|
1662
|
-
[_aK, _pO],
|
|
1663
|
-
[[0, 1], () => ListOfPatchOperation], 1
|
|
1664
|
-
];
|
|
1665
|
-
var UpdateAuthorizerRequest$ = [3, n0, _UARp,
|
|
1666
|
-
0,
|
|
1667
|
-
[_rAI, _aIu, _pO],
|
|
1668
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1669
|
-
];
|
|
1670
|
-
var UpdateBasePathMappingRequest$ = [3, n0, _UBPMR,
|
|
1671
|
-
0,
|
|
1672
|
-
[_dN, _bP, _dNI, _pO],
|
|
1673
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _dNI }], () => ListOfPatchOperation], 2
|
|
1674
|
-
];
|
|
1675
|
-
var UpdateClientCertificateRequest$ = [3, n0, _UCCR,
|
|
1676
|
-
0,
|
|
1677
|
-
[_cCI, _pO],
|
|
1678
|
-
[[0, 1], () => ListOfPatchOperation], 1
|
|
1679
|
-
];
|
|
1680
|
-
var UpdateDeploymentRequest$ = [3, n0, _UDR,
|
|
1681
|
-
0,
|
|
1682
|
-
[_rAI, _dI, _pO],
|
|
1683
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1684
|
-
];
|
|
1685
|
-
var UpdateDocumentationPartRequest$ = [3, n0, _UDPR,
|
|
1686
|
-
0,
|
|
1687
|
-
[_rAI, _dPI, _pO],
|
|
1688
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1689
|
-
];
|
|
1690
|
-
var UpdateDocumentationVersionRequest$ = [3, n0, _UDVR,
|
|
1691
|
-
0,
|
|
1692
|
-
[_rAI, _dV, _pO],
|
|
1693
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1694
|
-
];
|
|
1695
|
-
var UpdateDomainNameRequest$ = [3, n0, _UDNR,
|
|
1696
|
-
0,
|
|
1697
|
-
[_dN, _dNI, _pO],
|
|
1698
|
-
[[0, 1], [0, { [_hQ]: _dNI }], () => ListOfPatchOperation], 1
|
|
1699
|
-
];
|
|
1700
|
-
var UpdateGatewayResponseRequest$ = [3, n0, _UGRR,
|
|
1701
|
-
0,
|
|
1702
|
-
[_rAI, _rT, _pO],
|
|
1703
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1704
|
-
];
|
|
1705
|
-
var UpdateIntegrationRequest$ = [3, n0, _UIR,
|
|
1706
|
-
0,
|
|
1707
|
-
[_rAI, _rI, _hM, _pO],
|
|
1708
|
-
[[0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 3
|
|
1709
|
-
];
|
|
1710
|
-
var UpdateIntegrationResponseRequest$ = [3, n0, _UIRR,
|
|
1711
|
-
0,
|
|
1712
|
-
[_rAI, _rI, _hM, _sC, _pO],
|
|
1713
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 4
|
|
1714
|
-
];
|
|
1715
|
-
var UpdateMethodRequest$ = [3, n0, _UMR,
|
|
1716
|
-
0,
|
|
1717
|
-
[_rAI, _rI, _hM, _pO],
|
|
1718
|
-
[[0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 3
|
|
1719
|
-
];
|
|
1720
|
-
var UpdateMethodResponseRequest$ = [3, n0, _UMRR,
|
|
1721
|
-
0,
|
|
1722
|
-
[_rAI, _rI, _hM, _sC, _pO],
|
|
1723
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], () => ListOfPatchOperation], 4
|
|
1724
|
-
];
|
|
1725
|
-
var UpdateModelRequest$ = [3, n0, _UMRp,
|
|
1726
|
-
0,
|
|
1727
|
-
[_rAI, _mN, _pO],
|
|
1728
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1729
|
-
];
|
|
1730
|
-
var UpdateRequestValidatorRequest$ = [3, n0, _URVR,
|
|
1731
|
-
0,
|
|
1732
|
-
[_rAI, _rVI, _pO],
|
|
1733
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1734
|
-
];
|
|
1735
|
-
var UpdateResourceRequest$ = [3, n0, _URRp,
|
|
1736
|
-
0,
|
|
1737
|
-
[_rAI, _rI, _pO],
|
|
1738
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1739
|
-
];
|
|
1740
|
-
var UpdateRestApiRequest$ = [3, n0, _URAR,
|
|
1741
|
-
0,
|
|
1742
|
-
[_rAI, _pO],
|
|
1743
|
-
[[0, 1], () => ListOfPatchOperation], 1
|
|
1744
|
-
];
|
|
1745
|
-
var UpdateStageRequest$ = [3, n0, _USR,
|
|
1746
|
-
0,
|
|
1747
|
-
[_rAI, _sN, _pO],
|
|
1748
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1749
|
-
];
|
|
1750
|
-
var UpdateUsagePlanRequest$ = [3, n0, _UUPR,
|
|
1751
|
-
0,
|
|
1752
|
-
[_uPI, _pO],
|
|
1753
|
-
[[0, 1], () => ListOfPatchOperation], 1
|
|
1754
|
-
];
|
|
1755
|
-
var UpdateUsageRequest$ = [3, n0, _UUR,
|
|
1756
|
-
0,
|
|
1757
|
-
[_uPI, _kI, _pO],
|
|
1758
|
-
[[0, 1], [0, 1], () => ListOfPatchOperation], 2
|
|
1759
|
-
];
|
|
1760
|
-
var UpdateVpcLinkRequest$ = [3, n0, _UVLR,
|
|
1761
|
-
0,
|
|
1762
|
-
[_vLI, _pO],
|
|
1763
|
-
[[0, 1], () => ListOfPatchOperation], 1
|
|
1764
|
-
];
|
|
1765
|
-
var Usage$ = [3, n0, _U,
|
|
1766
|
-
0,
|
|
1767
|
-
[_uPI, _sDt, _eDn, _it, _p],
|
|
1768
|
-
[0, 0, 0, [[2, n0, _MOKU, 0, 0, [1, n0, _LOU, 0, 64 | 1]], { [_jN]: _val }], [0, { [_hQ]: _p }]]
|
|
1769
|
-
];
|
|
1770
|
-
var UsagePlan$ = [3, n0, _UP,
|
|
1771
|
-
0,
|
|
1772
|
-
[_i, _n, _d, _aS, _th, _q, _pC, _t],
|
|
1773
|
-
[0, 0, 0, () => ListOfApiStage, () => ThrottleSettings$, () => QuotaSettings$, 0, 128 | 0]
|
|
1774
|
-
];
|
|
1775
|
-
var UsagePlanKey$ = [3, n0, _UPK,
|
|
1776
|
-
0,
|
|
1777
|
-
[_i, _ty, _v, _n],
|
|
1778
|
-
[0, 0, 0, 0]
|
|
1779
|
-
];
|
|
1780
|
-
var UsagePlanKeys$ = [3, n0, _UPKs,
|
|
1781
|
-
0,
|
|
1782
|
-
[_it, _p],
|
|
1783
|
-
[[() => ListOfUsagePlanKey, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1784
|
-
];
|
|
1785
|
-
var UsagePlans$ = [3, n0, _UPs,
|
|
1786
|
-
0,
|
|
1787
|
-
[_it, _p],
|
|
1788
|
-
[[() => ListOfUsagePlan, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1789
|
-
];
|
|
1790
|
-
var VpcLink$ = [3, n0, _VL,
|
|
1791
|
-
0,
|
|
1792
|
-
[_i, _n, _d, _tA, _st, _sM, _t],
|
|
1793
|
-
[0, 0, 0, 64 | 0, 0, 0, 128 | 0]
|
|
1794
|
-
];
|
|
1795
|
-
var VpcLinks$ = [3, n0, _VLp,
|
|
1796
|
-
0,
|
|
1797
|
-
[_it, _p],
|
|
1798
|
-
[[() => ListOfVpcLink, { [_jN]: _ite }], [0, { [_hQ]: _p }]]
|
|
1799
|
-
];
|
|
1800
|
-
var __Unit = "unit";
|
|
1801
|
-
var APIGatewayServiceException$ = [-3, _sm, "APIGatewayServiceException", 0, [], []];
|
|
1802
|
-
schema.TypeRegistry.for(_sm).registerError(APIGatewayServiceException$, APIGatewayServiceException);
|
|
1803
|
-
var ListOfApiKey = [1, n0, _LOAK,
|
|
1804
|
-
0, () => ApiKey$
|
|
1805
|
-
];
|
|
1806
|
-
var ListOfApiStage = [1, n0, _LOAS,
|
|
1807
|
-
0, () => ApiStage$
|
|
1808
|
-
];
|
|
1809
|
-
var ListOfAuthorizer = [1, n0, _LOA,
|
|
1810
|
-
0, () => Authorizer$
|
|
1811
|
-
];
|
|
1812
|
-
var ListOfBasePathMapping = [1, n0, _LOBPM,
|
|
1813
|
-
0, () => BasePathMapping$
|
|
1814
|
-
];
|
|
1815
|
-
var ListOfClientCertificate = [1, n0, _LOCC,
|
|
1816
|
-
0, () => ClientCertificate$
|
|
1817
|
-
];
|
|
1818
|
-
var ListOfDeployment = [1, n0, _LOD,
|
|
1819
|
-
0, () => Deployment$
|
|
1820
|
-
];
|
|
1821
|
-
var ListOfDocumentationPart = [1, n0, _LODP,
|
|
1822
|
-
0, () => DocumentationPart$
|
|
1823
|
-
];
|
|
1824
|
-
var ListOfDocumentationVersion = [1, n0, _LODV,
|
|
1825
|
-
0, () => DocumentationVersion$
|
|
1826
|
-
];
|
|
1827
|
-
var ListOfDomainName = [1, n0, _LODN,
|
|
1828
|
-
0, () => DomainName$
|
|
1829
|
-
];
|
|
1830
|
-
var ListOfDomainNameAccessAssociation = [1, n0, _LODNAA,
|
|
1831
|
-
0, () => DomainNameAccessAssociation$
|
|
1832
|
-
];
|
|
1833
|
-
var ListOfGatewayResponse = [1, n0, _LOGR,
|
|
1834
|
-
0, () => GatewayResponse$
|
|
1835
|
-
];
|
|
1836
|
-
var ListOfModel = [1, n0, _LOM,
|
|
1837
|
-
0, () => Model$
|
|
1838
|
-
];
|
|
1839
|
-
var ListOfPatchOperation = [1, n0, _LOPO,
|
|
1840
|
-
0, () => PatchOperation$
|
|
1841
|
-
];
|
|
1842
|
-
var ListOfRequestValidator = [1, n0, _LORV,
|
|
1843
|
-
0, () => RequestValidator$
|
|
1844
|
-
];
|
|
1845
|
-
var ListOfResource = [1, n0, _LOR,
|
|
1846
|
-
0, () => Resource$
|
|
1847
|
-
];
|
|
1848
|
-
var ListOfRestApi = [1, n0, _LORA,
|
|
1849
|
-
0, () => RestApi$
|
|
1850
|
-
];
|
|
1851
|
-
var ListOfSdkConfigurationProperty = [1, n0, _LOSCP,
|
|
1852
|
-
0, () => SdkConfigurationProperty$
|
|
1853
|
-
];
|
|
1854
|
-
var ListOfSdkType = [1, n0, _LOST,
|
|
1855
|
-
0, () => SdkType$
|
|
1856
|
-
];
|
|
1857
|
-
var ListOfStage = [1, n0, _LOS,
|
|
1858
|
-
0, () => Stage$
|
|
1859
|
-
];
|
|
1860
|
-
var ListOfStageKeys = [1, n0, _LOSK,
|
|
1861
|
-
0, () => StageKey$
|
|
1862
|
-
];
|
|
1863
|
-
var ListOfUsagePlan = [1, n0, _LOUP,
|
|
1864
|
-
0, () => UsagePlan$
|
|
1865
|
-
];
|
|
1866
|
-
var ListOfUsagePlanKey = [1, n0, _LOUPK,
|
|
1867
|
-
0, () => UsagePlanKey$
|
|
1868
|
-
];
|
|
1869
|
-
var ListOfVpcLink = [1, n0, _LOVL,
|
|
1870
|
-
0, () => VpcLink$
|
|
1871
|
-
];
|
|
1872
|
-
var MapOfApiStageThrottleSettings = [2, n0, _MOASTS,
|
|
1873
|
-
0, 0, () => ThrottleSettings$
|
|
1874
|
-
];
|
|
1875
|
-
var MapOfIntegrationResponse = [2, n0, _MOIR,
|
|
1876
|
-
0, 0, () => IntegrationResponse$
|
|
1877
|
-
];
|
|
1878
|
-
var MapOfMethod = [2, n0, _MOM,
|
|
1879
|
-
0, 0, () => Method$
|
|
1880
|
-
];
|
|
1881
|
-
var MapOfMethodResponse = [2, n0, _MOMR,
|
|
1882
|
-
0, 0, () => MethodResponse$
|
|
1883
|
-
];
|
|
1884
|
-
var MapOfMethodSettings = [2, n0, _MOMS,
|
|
1885
|
-
0, 0, () => MethodSetting$
|
|
1886
|
-
];
|
|
1887
|
-
var MapOfMethodSnapshot = [2, n0, _MOMSa,
|
|
1888
|
-
0, 0, () => MethodSnapshot$
|
|
1889
|
-
];
|
|
1890
|
-
var PathToMapOfMethodSnapshot = [2, n0, _PTMOMS,
|
|
1891
|
-
0, 0, () => MapOfMethodSnapshot
|
|
1892
|
-
];
|
|
1893
|
-
var CreateApiKey$ = [9, n0, _CAK,
|
|
1894
|
-
{ [_ht]: ["POST", "/apikeys", 201] }, () => CreateApiKeyRequest$, () => ApiKey$
|
|
1895
|
-
];
|
|
1896
|
-
var CreateAuthorizer$ = [9, n0, _CA,
|
|
1897
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/authorizers", 201] }, () => CreateAuthorizerRequest$, () => Authorizer$
|
|
1898
|
-
];
|
|
1899
|
-
var CreateBasePathMapping$ = [9, n0, _CBPM,
|
|
1900
|
-
{ [_ht]: ["POST", "/domainnames/{domainName}/basepathmappings", 201] }, () => CreateBasePathMappingRequest$, () => BasePathMapping$
|
|
1901
|
-
];
|
|
1902
|
-
var CreateDeployment$ = [9, n0, _CDr,
|
|
1903
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/deployments", 201] }, () => CreateDeploymentRequest$, () => Deployment$
|
|
1904
|
-
];
|
|
1905
|
-
var CreateDocumentationPart$ = [9, n0, _CDP,
|
|
1906
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/documentation/parts", 201] }, () => CreateDocumentationPartRequest$, () => DocumentationPart$
|
|
1907
|
-
];
|
|
1908
|
-
var CreateDocumentationVersion$ = [9, n0, _CDV,
|
|
1909
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/documentation/versions", 201] }, () => CreateDocumentationVersionRequest$, () => DocumentationVersion$
|
|
1910
|
-
];
|
|
1911
|
-
var CreateDomainName$ = [9, n0, _CDN,
|
|
1912
|
-
{ [_ht]: ["POST", "/domainnames", 201] }, () => CreateDomainNameRequest$, () => DomainName$
|
|
1913
|
-
];
|
|
1914
|
-
var CreateDomainNameAccessAssociation$ = [9, n0, _CDNAA,
|
|
1915
|
-
{ [_ht]: ["POST", "/domainnameaccessassociations", 201] }, () => CreateDomainNameAccessAssociationRequest$, () => DomainNameAccessAssociation$
|
|
1916
|
-
];
|
|
1917
|
-
var CreateModel$ = [9, n0, _CM,
|
|
1918
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/models", 201] }, () => CreateModelRequest$, () => Model$
|
|
1919
|
-
];
|
|
1920
|
-
var CreateRequestValidator$ = [9, n0, _CRV,
|
|
1921
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/requestvalidators", 201] }, () => CreateRequestValidatorRequest$, () => RequestValidator$
|
|
1922
|
-
];
|
|
1923
|
-
var CreateResource$ = [9, n0, _CR,
|
|
1924
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/resources/{parentId}", 201] }, () => CreateResourceRequest$, () => Resource$
|
|
1925
|
-
];
|
|
1926
|
-
var CreateRestApi$ = [9, n0, _CRA,
|
|
1927
|
-
{ [_ht]: ["POST", "/restapis", 201] }, () => CreateRestApiRequest$, () => RestApi$
|
|
1928
|
-
];
|
|
1929
|
-
var CreateStage$ = [9, n0, _CSr,
|
|
1930
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/stages", 201] }, () => CreateStageRequest$, () => Stage$
|
|
1931
|
-
];
|
|
1932
|
-
var CreateUsagePlan$ = [9, n0, _CUP,
|
|
1933
|
-
{ [_ht]: ["POST", "/usageplans", 201] }, () => CreateUsagePlanRequest$, () => UsagePlan$
|
|
1934
|
-
];
|
|
1935
|
-
var CreateUsagePlanKey$ = [9, n0, _CUPK,
|
|
1936
|
-
{ [_ht]: ["POST", "/usageplans/{usagePlanId}/keys", 201] }, () => CreateUsagePlanKeyRequest$, () => UsagePlanKey$
|
|
1937
|
-
];
|
|
1938
|
-
var CreateVpcLink$ = [9, n0, _CVL,
|
|
1939
|
-
{ [_ht]: ["POST", "/vpclinks", 202] }, () => CreateVpcLinkRequest$, () => VpcLink$
|
|
1940
|
-
];
|
|
1941
|
-
var DeleteApiKey$ = [9, n0, _DAK,
|
|
1942
|
-
{ [_ht]: ["DELETE", "/apikeys/{apiKey}", 202] }, () => DeleteApiKeyRequest$, () => __Unit
|
|
1943
|
-
];
|
|
1944
|
-
var DeleteAuthorizer$ = [9, n0, _DA,
|
|
1945
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/authorizers/{authorizerId}", 202] }, () => DeleteAuthorizerRequest$, () => __Unit
|
|
1946
|
-
];
|
|
1947
|
-
var DeleteBasePathMapping$ = [9, n0, _DBPM,
|
|
1948
|
-
{ [_ht]: ["DELETE", "/domainnames/{domainName}/basepathmappings/{basePath}", 202] }, () => DeleteBasePathMappingRequest$, () => __Unit
|
|
1949
|
-
];
|
|
1950
|
-
var DeleteClientCertificate$ = [9, n0, _DCC,
|
|
1951
|
-
{ [_ht]: ["DELETE", "/clientcertificates/{clientCertificateId}", 202] }, () => DeleteClientCertificateRequest$, () => __Unit
|
|
1952
|
-
];
|
|
1953
|
-
var DeleteDeployment$ = [9, n0, _DD,
|
|
1954
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/deployments/{deploymentId}", 202] }, () => DeleteDeploymentRequest$, () => __Unit
|
|
1955
|
-
];
|
|
1956
|
-
var DeleteDocumentationPart$ = [9, n0, _DDP,
|
|
1957
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 202] }, () => DeleteDocumentationPartRequest$, () => __Unit
|
|
1958
|
-
];
|
|
1959
|
-
var DeleteDocumentationVersion$ = [9, n0, _DDV,
|
|
1960
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 202] }, () => DeleteDocumentationVersionRequest$, () => __Unit
|
|
1961
|
-
];
|
|
1962
|
-
var DeleteDomainName$ = [9, n0, _DDN,
|
|
1963
|
-
{ [_ht]: ["DELETE", "/domainnames/{domainName}", 202] }, () => DeleteDomainNameRequest$, () => __Unit
|
|
1964
|
-
];
|
|
1965
|
-
var DeleteDomainNameAccessAssociation$ = [9, n0, _DDNAA,
|
|
1966
|
-
{ [_ht]: ["DELETE", "/domainnameaccessassociations/{domainNameAccessAssociationArn}", 202] }, () => DeleteDomainNameAccessAssociationRequest$, () => __Unit
|
|
1967
|
-
];
|
|
1968
|
-
var DeleteGatewayResponse$ = [9, n0, _DGR,
|
|
1969
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/gatewayresponses/{responseType}", 202] }, () => DeleteGatewayResponseRequest$, () => __Unit
|
|
1970
|
-
];
|
|
1971
|
-
var DeleteIntegration$ = [9, n0, _DI,
|
|
1972
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 204] }, () => DeleteIntegrationRequest$, () => __Unit
|
|
1973
|
-
];
|
|
1974
|
-
var DeleteIntegrationResponse$ = [9, n0, _DIRe,
|
|
1975
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 204] }, () => DeleteIntegrationResponseRequest$, () => __Unit
|
|
1976
|
-
];
|
|
1977
|
-
var DeleteMethod$ = [9, n0, _DM,
|
|
1978
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 204] }, () => DeleteMethodRequest$, () => __Unit
|
|
1979
|
-
];
|
|
1980
|
-
var DeleteMethodResponse$ = [9, n0, _DMRel,
|
|
1981
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 204] }, () => DeleteMethodResponseRequest$, () => __Unit
|
|
1982
|
-
];
|
|
1983
|
-
var DeleteModel$ = [9, n0, _DMe,
|
|
1984
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/models/{modelName}", 202] }, () => DeleteModelRequest$, () => __Unit
|
|
1985
|
-
];
|
|
1986
|
-
var DeleteRequestValidator$ = [9, n0, _DRV,
|
|
1987
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 202] }, () => DeleteRequestValidatorRequest$, () => __Unit
|
|
1988
|
-
];
|
|
1989
|
-
var DeleteResource$ = [9, n0, _DR,
|
|
1990
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/resources/{resourceId}", 202] }, () => DeleteResourceRequest$, () => __Unit
|
|
1991
|
-
];
|
|
1992
|
-
var DeleteRestApi$ = [9, n0, _DRA,
|
|
1993
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}", 202] }, () => DeleteRestApiRequest$, () => __Unit
|
|
1994
|
-
];
|
|
1995
|
-
var DeleteStage$ = [9, n0, _DS,
|
|
1996
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}", 202] }, () => DeleteStageRequest$, () => __Unit
|
|
1997
|
-
];
|
|
1998
|
-
var DeleteUsagePlan$ = [9, n0, _DUP,
|
|
1999
|
-
{ [_ht]: ["DELETE", "/usageplans/{usagePlanId}", 202] }, () => DeleteUsagePlanRequest$, () => __Unit
|
|
2000
|
-
];
|
|
2001
|
-
var DeleteUsagePlanKey$ = [9, n0, _DUPK,
|
|
2002
|
-
{ [_ht]: ["DELETE", "/usageplans/{usagePlanId}/keys/{keyId}", 202] }, () => DeleteUsagePlanKeyRequest$, () => __Unit
|
|
2003
|
-
];
|
|
2004
|
-
var DeleteVpcLink$ = [9, n0, _DVL,
|
|
2005
|
-
{ [_ht]: ["DELETE", "/vpclinks/{vpcLinkId}", 202] }, () => DeleteVpcLinkRequest$, () => __Unit
|
|
2006
|
-
];
|
|
2007
|
-
var FlushStageAuthorizersCache$ = [9, n0, _FSAC,
|
|
2008
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}/cache/authorizers", 202] }, () => FlushStageAuthorizersCacheRequest$, () => __Unit
|
|
2009
|
-
];
|
|
2010
|
-
var FlushStageCache$ = [9, n0, _FSC,
|
|
2011
|
-
{ [_ht]: ["DELETE", "/restapis/{restApiId}/stages/{stageName}/cache/data", 202] }, () => FlushStageCacheRequest$, () => __Unit
|
|
2012
|
-
];
|
|
2013
|
-
var GenerateClientCertificate$ = [9, n0, _GCC,
|
|
2014
|
-
{ [_ht]: ["POST", "/clientcertificates", 201] }, () => GenerateClientCertificateRequest$, () => ClientCertificate$
|
|
2015
|
-
];
|
|
2016
|
-
var GetAccount$ = [9, n0, _GA,
|
|
2017
|
-
{ [_ht]: ["GET", "/account", 200] }, () => GetAccountRequest$, () => Account$
|
|
2018
|
-
];
|
|
2019
|
-
var GetApiKey$ = [9, n0, _GAK,
|
|
2020
|
-
{ [_ht]: ["GET", "/apikeys/{apiKey}", 200] }, () => GetApiKeyRequest$, () => ApiKey$
|
|
2021
|
-
];
|
|
2022
|
-
var GetApiKeys$ = [9, n0, _GAKe,
|
|
2023
|
-
{ [_ht]: ["GET", "/apikeys", 200] }, () => GetApiKeysRequest$, () => ApiKeys$
|
|
2024
|
-
];
|
|
2025
|
-
var GetAuthorizer$ = [9, n0, _GAe,
|
|
2026
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => GetAuthorizerRequest$, () => Authorizer$
|
|
2027
|
-
];
|
|
2028
|
-
var GetAuthorizers$ = [9, n0, _GAet,
|
|
2029
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/authorizers", 200] }, () => GetAuthorizersRequest$, () => Authorizers$
|
|
2030
|
-
];
|
|
2031
|
-
var GetBasePathMapping$ = [9, n0, _GBPM,
|
|
2032
|
-
{ [_ht]: ["GET", "/domainnames/{domainName}/basepathmappings/{basePath}", 200] }, () => GetBasePathMappingRequest$, () => BasePathMapping$
|
|
2033
|
-
];
|
|
2034
|
-
var GetBasePathMappings$ = [9, n0, _GBPMe,
|
|
2035
|
-
{ [_ht]: ["GET", "/domainnames/{domainName}/basepathmappings", 200] }, () => GetBasePathMappingsRequest$, () => BasePathMappings$
|
|
2036
|
-
];
|
|
2037
|
-
var GetClientCertificate$ = [9, n0, _GCCe,
|
|
2038
|
-
{ [_ht]: ["GET", "/clientcertificates/{clientCertificateId}", 200] }, () => GetClientCertificateRequest$, () => ClientCertificate$
|
|
2039
|
-
];
|
|
2040
|
-
var GetClientCertificates$ = [9, n0, _GCCet,
|
|
2041
|
-
{ [_ht]: ["GET", "/clientcertificates", 200] }, () => GetClientCertificatesRequest$, () => ClientCertificates$
|
|
2042
|
-
];
|
|
2043
|
-
var GetDeployment$ = [9, n0, _GD,
|
|
2044
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/deployments/{deploymentId}", 200] }, () => GetDeploymentRequest$, () => Deployment$
|
|
2045
|
-
];
|
|
2046
|
-
var GetDeployments$ = [9, n0, _GDe,
|
|
2047
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/deployments", 200] }, () => GetDeploymentsRequest$, () => Deployments$
|
|
2048
|
-
];
|
|
2049
|
-
var GetDocumentationPart$ = [9, n0, _GDP,
|
|
2050
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 200] }, () => GetDocumentationPartRequest$, () => DocumentationPart$
|
|
2051
|
-
];
|
|
2052
|
-
var GetDocumentationParts$ = [9, n0, _GDPe,
|
|
2053
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/parts", 200] }, () => GetDocumentationPartsRequest$, () => DocumentationParts$
|
|
2054
|
-
];
|
|
2055
|
-
var GetDocumentationVersion$ = [9, n0, _GDV,
|
|
2056
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 200] }, () => GetDocumentationVersionRequest$, () => DocumentationVersion$
|
|
2057
|
-
];
|
|
2058
|
-
var GetDocumentationVersions$ = [9, n0, _GDVe,
|
|
2059
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/documentation/versions", 200] }, () => GetDocumentationVersionsRequest$, () => DocumentationVersions$
|
|
2060
|
-
];
|
|
2061
|
-
var GetDomainName$ = [9, n0, _GDN,
|
|
2062
|
-
{ [_ht]: ["GET", "/domainnames/{domainName}", 200] }, () => GetDomainNameRequest$, () => DomainName$
|
|
2063
|
-
];
|
|
2064
|
-
var GetDomainNameAccessAssociations$ = [9, n0, _GDNAA,
|
|
2065
|
-
{ [_ht]: ["GET", "/domainnameaccessassociations", 200] }, () => GetDomainNameAccessAssociationsRequest$, () => DomainNameAccessAssociations$
|
|
2066
|
-
];
|
|
2067
|
-
var GetDomainNames$ = [9, n0, _GDNe,
|
|
2068
|
-
{ [_ht]: ["GET", "/domainnames", 200] }, () => GetDomainNamesRequest$, () => DomainNames$
|
|
2069
|
-
];
|
|
2070
|
-
var GetExport$ = [9, n0, _GE,
|
|
2071
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}/exports/{exportType}", 200] }, () => GetExportRequest$, () => ExportResponse$
|
|
2072
|
-
];
|
|
2073
|
-
var GetGatewayResponse$ = [9, n0, _GGR,
|
|
2074
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/gatewayresponses/{responseType}", 200] }, () => GetGatewayResponseRequest$, () => GatewayResponse$
|
|
2075
|
-
];
|
|
2076
|
-
var GetGatewayResponses$ = [9, n0, _GGRe,
|
|
2077
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/gatewayresponses", 200] }, () => GetGatewayResponsesRequest$, () => GatewayResponses$
|
|
2078
|
-
];
|
|
2079
|
-
var GetIntegration$ = [9, n0, _GI,
|
|
2080
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 200] }, () => GetIntegrationRequest$, () => Integration$
|
|
2081
|
-
];
|
|
2082
|
-
var GetIntegrationResponse$ = [9, n0, _GIRe,
|
|
2083
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 200] }, () => GetIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2084
|
-
];
|
|
2085
|
-
var GetMethod$ = [9, n0, _GM,
|
|
2086
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => GetMethodRequest$, () => Method$
|
|
2087
|
-
];
|
|
2088
|
-
var GetMethodResponse$ = [9, n0, _GMRete,
|
|
2089
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 200] }, () => GetMethodResponseRequest$, () => MethodResponse$
|
|
2090
|
-
];
|
|
2091
|
-
var GetModel$ = [9, n0, _GMe,
|
|
2092
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/models/{modelName}", 200] }, () => GetModelRequest$, () => Model$
|
|
2093
|
-
];
|
|
2094
|
-
var GetModels$ = [9, n0, _GMet,
|
|
2095
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/models", 200] }, () => GetModelsRequest$, () => Models$
|
|
2096
|
-
];
|
|
2097
|
-
var GetModelTemplate$ = [9, n0, _GMT,
|
|
2098
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/models/{modelName}/default_template", 200] }, () => GetModelTemplateRequest$, () => Template$
|
|
2099
|
-
];
|
|
2100
|
-
var GetRequestValidator$ = [9, n0, _GRV,
|
|
2101
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 200] }, () => GetRequestValidatorRequest$, () => RequestValidator$
|
|
2102
|
-
];
|
|
2103
|
-
var GetRequestValidators$ = [9, n0, _GRVe,
|
|
2104
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/requestvalidators", 200] }, () => GetRequestValidatorsRequest$, () => RequestValidators$
|
|
2105
|
-
];
|
|
2106
|
-
var GetResource$ = [9, n0, _GRe,
|
|
2107
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources/{resourceId}", 200] }, () => GetResourceRequest$, () => Resource$
|
|
2108
|
-
];
|
|
2109
|
-
var GetResources$ = [9, n0, _GRet,
|
|
2110
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/resources", 200] }, () => GetResourcesRequest$, () => Resources$
|
|
2111
|
-
];
|
|
2112
|
-
var GetRestApi$ = [9, n0, _GRA,
|
|
2113
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}", 200] }, () => GetRestApiRequest$, () => RestApi$
|
|
2114
|
-
];
|
|
2115
|
-
var GetRestApis$ = [9, n0, _GRAe,
|
|
2116
|
-
{ [_ht]: ["GET", "/restapis", 200] }, () => GetRestApisRequest$, () => RestApis$
|
|
2117
|
-
];
|
|
2118
|
-
var GetSdk$ = [9, n0, _GS,
|
|
2119
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}/sdks/{sdkType}", 200] }, () => GetSdkRequest$, () => SdkResponse$
|
|
2120
|
-
];
|
|
2121
|
-
var GetSdkType$ = [9, n0, _GST,
|
|
2122
|
-
{ [_ht]: ["GET", "/sdktypes/{id}", 200] }, () => GetSdkTypeRequest$, () => SdkType$
|
|
2123
|
-
];
|
|
2124
|
-
var GetSdkTypes$ = [9, n0, _GSTe,
|
|
2125
|
-
{ [_ht]: ["GET", "/sdktypes", 200] }, () => GetSdkTypesRequest$, () => SdkTypes$
|
|
2126
|
-
];
|
|
2127
|
-
var GetStage$ = [9, n0, _GSe,
|
|
2128
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/stages/{stageName}", 200] }, () => GetStageRequest$, () => Stage$
|
|
2129
|
-
];
|
|
2130
|
-
var GetStages$ = [9, n0, _GSet,
|
|
2131
|
-
{ [_ht]: ["GET", "/restapis/{restApiId}/stages", 200] }, () => GetStagesRequest$, () => Stages$
|
|
2132
|
-
];
|
|
2133
|
-
var GetTags$ = [9, n0, _GT,
|
|
2134
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => GetTagsRequest$, () => Tags$
|
|
2135
|
-
];
|
|
2136
|
-
var GetUsage$ = [9, n0, _GU,
|
|
2137
|
-
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/usage", 200] }, () => GetUsageRequest$, () => Usage$
|
|
2138
|
-
];
|
|
2139
|
-
var GetUsagePlan$ = [9, n0, _GUP,
|
|
2140
|
-
{ [_ht]: ["GET", "/usageplans/{usagePlanId}", 200] }, () => GetUsagePlanRequest$, () => UsagePlan$
|
|
2141
|
-
];
|
|
2142
|
-
var GetUsagePlanKey$ = [9, n0, _GUPK,
|
|
2143
|
-
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/keys/{keyId}", 200] }, () => GetUsagePlanKeyRequest$, () => UsagePlanKey$
|
|
2144
|
-
];
|
|
2145
|
-
var GetUsagePlanKeys$ = [9, n0, _GUPKe,
|
|
2146
|
-
{ [_ht]: ["GET", "/usageplans/{usagePlanId}/keys", 200] }, () => GetUsagePlanKeysRequest$, () => UsagePlanKeys$
|
|
2147
|
-
];
|
|
2148
|
-
var GetUsagePlans$ = [9, n0, _GUPe,
|
|
2149
|
-
{ [_ht]: ["GET", "/usageplans", 200] }, () => GetUsagePlansRequest$, () => UsagePlans$
|
|
2150
|
-
];
|
|
2151
|
-
var GetVpcLink$ = [9, n0, _GVL,
|
|
2152
|
-
{ [_ht]: ["GET", "/vpclinks/{vpcLinkId}", 200] }, () => GetVpcLinkRequest$, () => VpcLink$
|
|
2153
|
-
];
|
|
2154
|
-
var GetVpcLinks$ = [9, n0, _GVLe,
|
|
2155
|
-
{ [_ht]: ["GET", "/vpclinks", 200] }, () => GetVpcLinksRequest$, () => VpcLinks$
|
|
2156
|
-
];
|
|
2157
|
-
var ImportApiKeys$ = [9, n0, _IAK,
|
|
2158
|
-
{ [_ht]: ["POST", "/apikeys?mode=import", 201] }, () => ImportApiKeysRequest$, () => ApiKeyIds$
|
|
2159
|
-
];
|
|
2160
|
-
var ImportDocumentationParts$ = [9, n0, _IDP,
|
|
2161
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/documentation/parts", 200] }, () => ImportDocumentationPartsRequest$, () => DocumentationPartIds$
|
|
2162
|
-
];
|
|
2163
|
-
var ImportRestApi$ = [9, n0, _IRA,
|
|
2164
|
-
{ [_ht]: ["POST", "/restapis?mode=import", 201] }, () => ImportRestApiRequest$, () => RestApi$
|
|
2165
|
-
];
|
|
2166
|
-
var PutGatewayResponse$ = [9, n0, _PGR,
|
|
2167
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/gatewayresponses/{responseType}", 201] }, () => PutGatewayResponseRequest$, () => GatewayResponse$
|
|
2168
|
-
];
|
|
2169
|
-
var PutIntegration$ = [9, n0, _PI,
|
|
2170
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 201] }, () => PutIntegrationRequest$, () => Integration$
|
|
2171
|
-
];
|
|
2172
|
-
var PutIntegrationResponse$ = [9, n0, _PIRu,
|
|
2173
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 201] }, () => PutIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2174
|
-
];
|
|
2175
|
-
var PutMethod$ = [9, n0, _PM,
|
|
2176
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 201] }, () => PutMethodRequest$, () => Method$
|
|
2177
|
-
];
|
|
2178
|
-
var PutMethodResponse$ = [9, n0, _PMRu,
|
|
2179
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 201] }, () => PutMethodResponseRequest$, () => MethodResponse$
|
|
2180
|
-
];
|
|
2181
|
-
var PutRestApi$ = [9, n0, _PRA,
|
|
2182
|
-
{ [_ht]: ["PUT", "/restapis/{restApiId}", 200] }, () => PutRestApiRequest$, () => RestApi$
|
|
2183
|
-
];
|
|
2184
|
-
var RejectDomainNameAccessAssociation$ = [9, n0, _RDNAA,
|
|
2185
|
-
{ [_ht]: ["POST", "/rejectdomainnameaccessassociations", 202] }, () => RejectDomainNameAccessAssociationRequest$, () => __Unit
|
|
2186
|
-
];
|
|
2187
|
-
var TagResource$ = [9, n0, _TR,
|
|
2188
|
-
{ [_ht]: ["PUT", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2189
|
-
];
|
|
2190
|
-
var TestInvokeAuthorizer$ = [9, n0, _TIA,
|
|
2191
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => TestInvokeAuthorizerRequest$, () => TestInvokeAuthorizerResponse$
|
|
2192
|
-
];
|
|
2193
|
-
var TestInvokeMethod$ = [9, n0, _TIM,
|
|
2194
|
-
{ [_ht]: ["POST", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => TestInvokeMethodRequest$, () => TestInvokeMethodResponse$
|
|
2195
|
-
];
|
|
2196
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2197
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2198
|
-
];
|
|
2199
|
-
var UpdateAccount$ = [9, n0, _UA,
|
|
2200
|
-
{ [_ht]: ["PATCH", "/account", 200] }, () => UpdateAccountRequest$, () => Account$
|
|
2201
|
-
];
|
|
2202
|
-
var UpdateApiKey$ = [9, n0, _UAK,
|
|
2203
|
-
{ [_ht]: ["PATCH", "/apikeys/{apiKey}", 200] }, () => UpdateApiKeyRequest$, () => ApiKey$
|
|
2204
|
-
];
|
|
2205
|
-
var UpdateAuthorizer$ = [9, n0, _UAp,
|
|
2206
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/authorizers/{authorizerId}", 200] }, () => UpdateAuthorizerRequest$, () => Authorizer$
|
|
2207
|
-
];
|
|
2208
|
-
var UpdateBasePathMapping$ = [9, n0, _UBPM,
|
|
2209
|
-
{ [_ht]: ["PATCH", "/domainnames/{domainName}/basepathmappings/{basePath}", 200] }, () => UpdateBasePathMappingRequest$, () => BasePathMapping$
|
|
2210
|
-
];
|
|
2211
|
-
var UpdateClientCertificate$ = [9, n0, _UCC,
|
|
2212
|
-
{ [_ht]: ["PATCH", "/clientcertificates/{clientCertificateId}", 200] }, () => UpdateClientCertificateRequest$, () => ClientCertificate$
|
|
2213
|
-
];
|
|
2214
|
-
var UpdateDeployment$ = [9, n0, _UD,
|
|
2215
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/deployments/{deploymentId}", 200] }, () => UpdateDeploymentRequest$, () => Deployment$
|
|
2216
|
-
];
|
|
2217
|
-
var UpdateDocumentationPart$ = [9, n0, _UDP,
|
|
2218
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/documentation/parts/{documentationPartId}", 200] }, () => UpdateDocumentationPartRequest$, () => DocumentationPart$
|
|
2219
|
-
];
|
|
2220
|
-
var UpdateDocumentationVersion$ = [9, n0, _UDV,
|
|
2221
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/documentation/versions/{documentationVersion}", 200] }, () => UpdateDocumentationVersionRequest$, () => DocumentationVersion$
|
|
2222
|
-
];
|
|
2223
|
-
var UpdateDomainName$ = [9, n0, _UDN,
|
|
2224
|
-
{ [_ht]: ["PATCH", "/domainnames/{domainName}", 200] }, () => UpdateDomainNameRequest$, () => DomainName$
|
|
2225
|
-
];
|
|
2226
|
-
var UpdateGatewayResponse$ = [9, n0, _UGR,
|
|
2227
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/gatewayresponses/{responseType}", 200] }, () => UpdateGatewayResponseRequest$, () => GatewayResponse$
|
|
2228
|
-
];
|
|
2229
|
-
var UpdateIntegration$ = [9, n0, _UI,
|
|
2230
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration", 200] }, () => UpdateIntegrationRequest$, () => Integration$
|
|
2231
|
-
];
|
|
2232
|
-
var UpdateIntegrationResponse$ = [9, n0, _UIRp,
|
|
2233
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/integration/responses/{statusCode}", 200] }, () => UpdateIntegrationResponseRequest$, () => IntegrationResponse$
|
|
2234
|
-
];
|
|
2235
|
-
var UpdateMethod$ = [9, n0, _UM,
|
|
2236
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}", 200] }, () => UpdateMethodRequest$, () => Method$
|
|
2237
|
-
];
|
|
2238
|
-
var UpdateMethodResponse$ = [9, n0, _UMRpd,
|
|
2239
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}/methods/{httpMethod}/responses/{statusCode}", 201] }, () => UpdateMethodResponseRequest$, () => MethodResponse$
|
|
2240
|
-
];
|
|
2241
|
-
var UpdateModel$ = [9, n0, _UMp,
|
|
2242
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/models/{modelName}", 200] }, () => UpdateModelRequest$, () => Model$
|
|
2243
|
-
];
|
|
2244
|
-
var UpdateRequestValidator$ = [9, n0, _URV,
|
|
2245
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/requestvalidators/{requestValidatorId}", 200] }, () => UpdateRequestValidatorRequest$, () => RequestValidator$
|
|
2246
|
-
];
|
|
2247
|
-
var UpdateResource$ = [9, n0, _URp,
|
|
2248
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/resources/{resourceId}", 200] }, () => UpdateResourceRequest$, () => Resource$
|
|
2249
|
-
];
|
|
2250
|
-
var UpdateRestApi$ = [9, n0, _URA,
|
|
2251
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}", 200] }, () => UpdateRestApiRequest$, () => RestApi$
|
|
2252
|
-
];
|
|
2253
|
-
var UpdateStage$ = [9, n0, _US,
|
|
2254
|
-
{ [_ht]: ["PATCH", "/restapis/{restApiId}/stages/{stageName}", 200] }, () => UpdateStageRequest$, () => Stage$
|
|
2255
|
-
];
|
|
2256
|
-
var UpdateUsage$ = [9, n0, _UU,
|
|
2257
|
-
{ [_ht]: ["PATCH", "/usageplans/{usagePlanId}/keys/{keyId}/usage", 200] }, () => UpdateUsageRequest$, () => Usage$
|
|
2258
|
-
];
|
|
2259
|
-
var UpdateUsagePlan$ = [9, n0, _UUP,
|
|
2260
|
-
{ [_ht]: ["PATCH", "/usageplans/{usagePlanId}", 200] }, () => UpdateUsagePlanRequest$, () => UsagePlan$
|
|
2261
|
-
];
|
|
2262
|
-
var UpdateVpcLink$ = [9, n0, _UVL,
|
|
2263
|
-
{ [_ht]: ["PATCH", "/vpclinks/{vpcLinkId}", 200] }, () => UpdateVpcLinkRequest$, () => VpcLink$
|
|
2264
|
-
];
|
|
2265
|
-
|
|
2266
118
|
class CreateApiKeyCommand extends smithyClient.Command
|
|
2267
119
|
.classBuilder()
|
|
2268
120
|
.ep(commonParams)
|
|
@@ -2271,7 +123,7 @@ class CreateApiKeyCommand extends smithyClient.Command
|
|
|
2271
123
|
})
|
|
2272
124
|
.s("BackplaneControlService", "CreateApiKey", {})
|
|
2273
125
|
.n("APIGatewayClient", "CreateApiKeyCommand")
|
|
2274
|
-
.sc(CreateApiKey$)
|
|
126
|
+
.sc(schemas_0.CreateApiKey$)
|
|
2275
127
|
.build() {
|
|
2276
128
|
}
|
|
2277
129
|
|
|
@@ -2283,7 +135,7 @@ class CreateAuthorizerCommand extends smithyClient.Command
|
|
|
2283
135
|
})
|
|
2284
136
|
.s("BackplaneControlService", "CreateAuthorizer", {})
|
|
2285
137
|
.n("APIGatewayClient", "CreateAuthorizerCommand")
|
|
2286
|
-
.sc(CreateAuthorizer$)
|
|
138
|
+
.sc(schemas_0.CreateAuthorizer$)
|
|
2287
139
|
.build() {
|
|
2288
140
|
}
|
|
2289
141
|
|
|
@@ -2295,7 +147,7 @@ class CreateBasePathMappingCommand extends smithyClient.Command
|
|
|
2295
147
|
})
|
|
2296
148
|
.s("BackplaneControlService", "CreateBasePathMapping", {})
|
|
2297
149
|
.n("APIGatewayClient", "CreateBasePathMappingCommand")
|
|
2298
|
-
.sc(CreateBasePathMapping$)
|
|
150
|
+
.sc(schemas_0.CreateBasePathMapping$)
|
|
2299
151
|
.build() {
|
|
2300
152
|
}
|
|
2301
153
|
|
|
@@ -2307,7 +159,7 @@ class CreateDeploymentCommand extends smithyClient.Command
|
|
|
2307
159
|
})
|
|
2308
160
|
.s("BackplaneControlService", "CreateDeployment", {})
|
|
2309
161
|
.n("APIGatewayClient", "CreateDeploymentCommand")
|
|
2310
|
-
.sc(CreateDeployment$)
|
|
162
|
+
.sc(schemas_0.CreateDeployment$)
|
|
2311
163
|
.build() {
|
|
2312
164
|
}
|
|
2313
165
|
|
|
@@ -2319,7 +171,7 @@ class CreateDocumentationPartCommand extends smithyClient.Command
|
|
|
2319
171
|
})
|
|
2320
172
|
.s("BackplaneControlService", "CreateDocumentationPart", {})
|
|
2321
173
|
.n("APIGatewayClient", "CreateDocumentationPartCommand")
|
|
2322
|
-
.sc(CreateDocumentationPart$)
|
|
174
|
+
.sc(schemas_0.CreateDocumentationPart$)
|
|
2323
175
|
.build() {
|
|
2324
176
|
}
|
|
2325
177
|
|
|
@@ -2331,7 +183,7 @@ class CreateDocumentationVersionCommand extends smithyClient.Command
|
|
|
2331
183
|
})
|
|
2332
184
|
.s("BackplaneControlService", "CreateDocumentationVersion", {})
|
|
2333
185
|
.n("APIGatewayClient", "CreateDocumentationVersionCommand")
|
|
2334
|
-
.sc(CreateDocumentationVersion$)
|
|
186
|
+
.sc(schemas_0.CreateDocumentationVersion$)
|
|
2335
187
|
.build() {
|
|
2336
188
|
}
|
|
2337
189
|
|
|
@@ -2343,7 +195,7 @@ class CreateDomainNameAccessAssociationCommand extends smithyClient.Command
|
|
|
2343
195
|
})
|
|
2344
196
|
.s("BackplaneControlService", "CreateDomainNameAccessAssociation", {})
|
|
2345
197
|
.n("APIGatewayClient", "CreateDomainNameAccessAssociationCommand")
|
|
2346
|
-
.sc(CreateDomainNameAccessAssociation$)
|
|
198
|
+
.sc(schemas_0.CreateDomainNameAccessAssociation$)
|
|
2347
199
|
.build() {
|
|
2348
200
|
}
|
|
2349
201
|
|
|
@@ -2355,7 +207,7 @@ class CreateDomainNameCommand extends smithyClient.Command
|
|
|
2355
207
|
})
|
|
2356
208
|
.s("BackplaneControlService", "CreateDomainName", {})
|
|
2357
209
|
.n("APIGatewayClient", "CreateDomainNameCommand")
|
|
2358
|
-
.sc(CreateDomainName$)
|
|
210
|
+
.sc(schemas_0.CreateDomainName$)
|
|
2359
211
|
.build() {
|
|
2360
212
|
}
|
|
2361
213
|
|
|
@@ -2367,7 +219,7 @@ class CreateModelCommand extends smithyClient.Command
|
|
|
2367
219
|
})
|
|
2368
220
|
.s("BackplaneControlService", "CreateModel", {})
|
|
2369
221
|
.n("APIGatewayClient", "CreateModelCommand")
|
|
2370
|
-
.sc(CreateModel$)
|
|
222
|
+
.sc(schemas_0.CreateModel$)
|
|
2371
223
|
.build() {
|
|
2372
224
|
}
|
|
2373
225
|
|
|
@@ -2379,7 +231,7 @@ class CreateRequestValidatorCommand extends smithyClient.Command
|
|
|
2379
231
|
})
|
|
2380
232
|
.s("BackplaneControlService", "CreateRequestValidator", {})
|
|
2381
233
|
.n("APIGatewayClient", "CreateRequestValidatorCommand")
|
|
2382
|
-
.sc(CreateRequestValidator$)
|
|
234
|
+
.sc(schemas_0.CreateRequestValidator$)
|
|
2383
235
|
.build() {
|
|
2384
236
|
}
|
|
2385
237
|
|
|
@@ -2391,7 +243,7 @@ class CreateResourceCommand extends smithyClient.Command
|
|
|
2391
243
|
})
|
|
2392
244
|
.s("BackplaneControlService", "CreateResource", {})
|
|
2393
245
|
.n("APIGatewayClient", "CreateResourceCommand")
|
|
2394
|
-
.sc(CreateResource$)
|
|
246
|
+
.sc(schemas_0.CreateResource$)
|
|
2395
247
|
.build() {
|
|
2396
248
|
}
|
|
2397
249
|
|
|
@@ -2403,7 +255,7 @@ class CreateRestApiCommand extends smithyClient.Command
|
|
|
2403
255
|
})
|
|
2404
256
|
.s("BackplaneControlService", "CreateRestApi", {})
|
|
2405
257
|
.n("APIGatewayClient", "CreateRestApiCommand")
|
|
2406
|
-
.sc(CreateRestApi$)
|
|
258
|
+
.sc(schemas_0.CreateRestApi$)
|
|
2407
259
|
.build() {
|
|
2408
260
|
}
|
|
2409
261
|
|
|
@@ -2415,7 +267,7 @@ class CreateStageCommand extends smithyClient.Command
|
|
|
2415
267
|
})
|
|
2416
268
|
.s("BackplaneControlService", "CreateStage", {})
|
|
2417
269
|
.n("APIGatewayClient", "CreateStageCommand")
|
|
2418
|
-
.sc(CreateStage$)
|
|
270
|
+
.sc(schemas_0.CreateStage$)
|
|
2419
271
|
.build() {
|
|
2420
272
|
}
|
|
2421
273
|
|
|
@@ -2427,7 +279,7 @@ class CreateUsagePlanCommand extends smithyClient.Command
|
|
|
2427
279
|
})
|
|
2428
280
|
.s("BackplaneControlService", "CreateUsagePlan", {})
|
|
2429
281
|
.n("APIGatewayClient", "CreateUsagePlanCommand")
|
|
2430
|
-
.sc(CreateUsagePlan$)
|
|
282
|
+
.sc(schemas_0.CreateUsagePlan$)
|
|
2431
283
|
.build() {
|
|
2432
284
|
}
|
|
2433
285
|
|
|
@@ -2439,7 +291,7 @@ class CreateUsagePlanKeyCommand extends smithyClient.Command
|
|
|
2439
291
|
})
|
|
2440
292
|
.s("BackplaneControlService", "CreateUsagePlanKey", {})
|
|
2441
293
|
.n("APIGatewayClient", "CreateUsagePlanKeyCommand")
|
|
2442
|
-
.sc(CreateUsagePlanKey$)
|
|
294
|
+
.sc(schemas_0.CreateUsagePlanKey$)
|
|
2443
295
|
.build() {
|
|
2444
296
|
}
|
|
2445
297
|
|
|
@@ -2451,7 +303,7 @@ class CreateVpcLinkCommand extends smithyClient.Command
|
|
|
2451
303
|
})
|
|
2452
304
|
.s("BackplaneControlService", "CreateVpcLink", {})
|
|
2453
305
|
.n("APIGatewayClient", "CreateVpcLinkCommand")
|
|
2454
|
-
.sc(CreateVpcLink$)
|
|
306
|
+
.sc(schemas_0.CreateVpcLink$)
|
|
2455
307
|
.build() {
|
|
2456
308
|
}
|
|
2457
309
|
|
|
@@ -2463,7 +315,7 @@ class DeleteApiKeyCommand extends smithyClient.Command
|
|
|
2463
315
|
})
|
|
2464
316
|
.s("BackplaneControlService", "DeleteApiKey", {})
|
|
2465
317
|
.n("APIGatewayClient", "DeleteApiKeyCommand")
|
|
2466
|
-
.sc(DeleteApiKey$)
|
|
318
|
+
.sc(schemas_0.DeleteApiKey$)
|
|
2467
319
|
.build() {
|
|
2468
320
|
}
|
|
2469
321
|
|
|
@@ -2475,7 +327,7 @@ class DeleteAuthorizerCommand extends smithyClient.Command
|
|
|
2475
327
|
})
|
|
2476
328
|
.s("BackplaneControlService", "DeleteAuthorizer", {})
|
|
2477
329
|
.n("APIGatewayClient", "DeleteAuthorizerCommand")
|
|
2478
|
-
.sc(DeleteAuthorizer$)
|
|
330
|
+
.sc(schemas_0.DeleteAuthorizer$)
|
|
2479
331
|
.build() {
|
|
2480
332
|
}
|
|
2481
333
|
|
|
@@ -2487,7 +339,7 @@ class DeleteBasePathMappingCommand extends smithyClient.Command
|
|
|
2487
339
|
})
|
|
2488
340
|
.s("BackplaneControlService", "DeleteBasePathMapping", {})
|
|
2489
341
|
.n("APIGatewayClient", "DeleteBasePathMappingCommand")
|
|
2490
|
-
.sc(DeleteBasePathMapping$)
|
|
342
|
+
.sc(schemas_0.DeleteBasePathMapping$)
|
|
2491
343
|
.build() {
|
|
2492
344
|
}
|
|
2493
345
|
|
|
@@ -2499,7 +351,7 @@ class DeleteClientCertificateCommand extends smithyClient.Command
|
|
|
2499
351
|
})
|
|
2500
352
|
.s("BackplaneControlService", "DeleteClientCertificate", {})
|
|
2501
353
|
.n("APIGatewayClient", "DeleteClientCertificateCommand")
|
|
2502
|
-
.sc(DeleteClientCertificate$)
|
|
354
|
+
.sc(schemas_0.DeleteClientCertificate$)
|
|
2503
355
|
.build() {
|
|
2504
356
|
}
|
|
2505
357
|
|
|
@@ -2511,7 +363,7 @@ class DeleteDeploymentCommand extends smithyClient.Command
|
|
|
2511
363
|
})
|
|
2512
364
|
.s("BackplaneControlService", "DeleteDeployment", {})
|
|
2513
365
|
.n("APIGatewayClient", "DeleteDeploymentCommand")
|
|
2514
|
-
.sc(DeleteDeployment$)
|
|
366
|
+
.sc(schemas_0.DeleteDeployment$)
|
|
2515
367
|
.build() {
|
|
2516
368
|
}
|
|
2517
369
|
|
|
@@ -2523,7 +375,7 @@ class DeleteDocumentationPartCommand extends smithyClient.Command
|
|
|
2523
375
|
})
|
|
2524
376
|
.s("BackplaneControlService", "DeleteDocumentationPart", {})
|
|
2525
377
|
.n("APIGatewayClient", "DeleteDocumentationPartCommand")
|
|
2526
|
-
.sc(DeleteDocumentationPart$)
|
|
378
|
+
.sc(schemas_0.DeleteDocumentationPart$)
|
|
2527
379
|
.build() {
|
|
2528
380
|
}
|
|
2529
381
|
|
|
@@ -2535,7 +387,7 @@ class DeleteDocumentationVersionCommand extends smithyClient.Command
|
|
|
2535
387
|
})
|
|
2536
388
|
.s("BackplaneControlService", "DeleteDocumentationVersion", {})
|
|
2537
389
|
.n("APIGatewayClient", "DeleteDocumentationVersionCommand")
|
|
2538
|
-
.sc(DeleteDocumentationVersion$)
|
|
390
|
+
.sc(schemas_0.DeleteDocumentationVersion$)
|
|
2539
391
|
.build() {
|
|
2540
392
|
}
|
|
2541
393
|
|
|
@@ -2547,7 +399,7 @@ class DeleteDomainNameAccessAssociationCommand extends smithyClient.Command
|
|
|
2547
399
|
})
|
|
2548
400
|
.s("BackplaneControlService", "DeleteDomainNameAccessAssociation", {})
|
|
2549
401
|
.n("APIGatewayClient", "DeleteDomainNameAccessAssociationCommand")
|
|
2550
|
-
.sc(DeleteDomainNameAccessAssociation$)
|
|
402
|
+
.sc(schemas_0.DeleteDomainNameAccessAssociation$)
|
|
2551
403
|
.build() {
|
|
2552
404
|
}
|
|
2553
405
|
|
|
@@ -2559,7 +411,7 @@ class DeleteDomainNameCommand extends smithyClient.Command
|
|
|
2559
411
|
})
|
|
2560
412
|
.s("BackplaneControlService", "DeleteDomainName", {})
|
|
2561
413
|
.n("APIGatewayClient", "DeleteDomainNameCommand")
|
|
2562
|
-
.sc(DeleteDomainName$)
|
|
414
|
+
.sc(schemas_0.DeleteDomainName$)
|
|
2563
415
|
.build() {
|
|
2564
416
|
}
|
|
2565
417
|
|
|
@@ -2571,7 +423,7 @@ class DeleteGatewayResponseCommand extends smithyClient.Command
|
|
|
2571
423
|
})
|
|
2572
424
|
.s("BackplaneControlService", "DeleteGatewayResponse", {})
|
|
2573
425
|
.n("APIGatewayClient", "DeleteGatewayResponseCommand")
|
|
2574
|
-
.sc(DeleteGatewayResponse$)
|
|
426
|
+
.sc(schemas_0.DeleteGatewayResponse$)
|
|
2575
427
|
.build() {
|
|
2576
428
|
}
|
|
2577
429
|
|
|
@@ -2583,7 +435,7 @@ class DeleteIntegrationCommand extends smithyClient.Command
|
|
|
2583
435
|
})
|
|
2584
436
|
.s("BackplaneControlService", "DeleteIntegration", {})
|
|
2585
437
|
.n("APIGatewayClient", "DeleteIntegrationCommand")
|
|
2586
|
-
.sc(DeleteIntegration$)
|
|
438
|
+
.sc(schemas_0.DeleteIntegration$)
|
|
2587
439
|
.build() {
|
|
2588
440
|
}
|
|
2589
441
|
|
|
@@ -2595,7 +447,7 @@ class DeleteIntegrationResponseCommand extends smithyClient.Command
|
|
|
2595
447
|
})
|
|
2596
448
|
.s("BackplaneControlService", "DeleteIntegrationResponse", {})
|
|
2597
449
|
.n("APIGatewayClient", "DeleteIntegrationResponseCommand")
|
|
2598
|
-
.sc(DeleteIntegrationResponse$)
|
|
450
|
+
.sc(schemas_0.DeleteIntegrationResponse$)
|
|
2599
451
|
.build() {
|
|
2600
452
|
}
|
|
2601
453
|
|
|
@@ -2607,7 +459,7 @@ class DeleteMethodCommand extends smithyClient.Command
|
|
|
2607
459
|
})
|
|
2608
460
|
.s("BackplaneControlService", "DeleteMethod", {})
|
|
2609
461
|
.n("APIGatewayClient", "DeleteMethodCommand")
|
|
2610
|
-
.sc(DeleteMethod$)
|
|
462
|
+
.sc(schemas_0.DeleteMethod$)
|
|
2611
463
|
.build() {
|
|
2612
464
|
}
|
|
2613
465
|
|
|
@@ -2619,7 +471,7 @@ class DeleteMethodResponseCommand extends smithyClient.Command
|
|
|
2619
471
|
})
|
|
2620
472
|
.s("BackplaneControlService", "DeleteMethodResponse", {})
|
|
2621
473
|
.n("APIGatewayClient", "DeleteMethodResponseCommand")
|
|
2622
|
-
.sc(DeleteMethodResponse$)
|
|
474
|
+
.sc(schemas_0.DeleteMethodResponse$)
|
|
2623
475
|
.build() {
|
|
2624
476
|
}
|
|
2625
477
|
|
|
@@ -2631,7 +483,7 @@ class DeleteModelCommand extends smithyClient.Command
|
|
|
2631
483
|
})
|
|
2632
484
|
.s("BackplaneControlService", "DeleteModel", {})
|
|
2633
485
|
.n("APIGatewayClient", "DeleteModelCommand")
|
|
2634
|
-
.sc(DeleteModel$)
|
|
486
|
+
.sc(schemas_0.DeleteModel$)
|
|
2635
487
|
.build() {
|
|
2636
488
|
}
|
|
2637
489
|
|
|
@@ -2643,7 +495,7 @@ class DeleteRequestValidatorCommand extends smithyClient.Command
|
|
|
2643
495
|
})
|
|
2644
496
|
.s("BackplaneControlService", "DeleteRequestValidator", {})
|
|
2645
497
|
.n("APIGatewayClient", "DeleteRequestValidatorCommand")
|
|
2646
|
-
.sc(DeleteRequestValidator$)
|
|
498
|
+
.sc(schemas_0.DeleteRequestValidator$)
|
|
2647
499
|
.build() {
|
|
2648
500
|
}
|
|
2649
501
|
|
|
@@ -2655,7 +507,7 @@ class DeleteResourceCommand extends smithyClient.Command
|
|
|
2655
507
|
})
|
|
2656
508
|
.s("BackplaneControlService", "DeleteResource", {})
|
|
2657
509
|
.n("APIGatewayClient", "DeleteResourceCommand")
|
|
2658
|
-
.sc(DeleteResource$)
|
|
510
|
+
.sc(schemas_0.DeleteResource$)
|
|
2659
511
|
.build() {
|
|
2660
512
|
}
|
|
2661
513
|
|
|
@@ -2667,7 +519,7 @@ class DeleteRestApiCommand extends smithyClient.Command
|
|
|
2667
519
|
})
|
|
2668
520
|
.s("BackplaneControlService", "DeleteRestApi", {})
|
|
2669
521
|
.n("APIGatewayClient", "DeleteRestApiCommand")
|
|
2670
|
-
.sc(DeleteRestApi$)
|
|
522
|
+
.sc(schemas_0.DeleteRestApi$)
|
|
2671
523
|
.build() {
|
|
2672
524
|
}
|
|
2673
525
|
|
|
@@ -2679,7 +531,7 @@ class DeleteStageCommand extends smithyClient.Command
|
|
|
2679
531
|
})
|
|
2680
532
|
.s("BackplaneControlService", "DeleteStage", {})
|
|
2681
533
|
.n("APIGatewayClient", "DeleteStageCommand")
|
|
2682
|
-
.sc(DeleteStage$)
|
|
534
|
+
.sc(schemas_0.DeleteStage$)
|
|
2683
535
|
.build() {
|
|
2684
536
|
}
|
|
2685
537
|
|
|
@@ -2691,7 +543,7 @@ class DeleteUsagePlanCommand extends smithyClient.Command
|
|
|
2691
543
|
})
|
|
2692
544
|
.s("BackplaneControlService", "DeleteUsagePlan", {})
|
|
2693
545
|
.n("APIGatewayClient", "DeleteUsagePlanCommand")
|
|
2694
|
-
.sc(DeleteUsagePlan$)
|
|
546
|
+
.sc(schemas_0.DeleteUsagePlan$)
|
|
2695
547
|
.build() {
|
|
2696
548
|
}
|
|
2697
549
|
|
|
@@ -2703,7 +555,7 @@ class DeleteUsagePlanKeyCommand extends smithyClient.Command
|
|
|
2703
555
|
})
|
|
2704
556
|
.s("BackplaneControlService", "DeleteUsagePlanKey", {})
|
|
2705
557
|
.n("APIGatewayClient", "DeleteUsagePlanKeyCommand")
|
|
2706
|
-
.sc(DeleteUsagePlanKey$)
|
|
558
|
+
.sc(schemas_0.DeleteUsagePlanKey$)
|
|
2707
559
|
.build() {
|
|
2708
560
|
}
|
|
2709
561
|
|
|
@@ -2715,7 +567,7 @@ class DeleteVpcLinkCommand extends smithyClient.Command
|
|
|
2715
567
|
})
|
|
2716
568
|
.s("BackplaneControlService", "DeleteVpcLink", {})
|
|
2717
569
|
.n("APIGatewayClient", "DeleteVpcLinkCommand")
|
|
2718
|
-
.sc(DeleteVpcLink$)
|
|
570
|
+
.sc(schemas_0.DeleteVpcLink$)
|
|
2719
571
|
.build() {
|
|
2720
572
|
}
|
|
2721
573
|
|
|
@@ -2727,7 +579,7 @@ class FlushStageAuthorizersCacheCommand extends smithyClient.Command
|
|
|
2727
579
|
})
|
|
2728
580
|
.s("BackplaneControlService", "FlushStageAuthorizersCache", {})
|
|
2729
581
|
.n("APIGatewayClient", "FlushStageAuthorizersCacheCommand")
|
|
2730
|
-
.sc(FlushStageAuthorizersCache$)
|
|
582
|
+
.sc(schemas_0.FlushStageAuthorizersCache$)
|
|
2731
583
|
.build() {
|
|
2732
584
|
}
|
|
2733
585
|
|
|
@@ -2739,7 +591,7 @@ class FlushStageCacheCommand extends smithyClient.Command
|
|
|
2739
591
|
})
|
|
2740
592
|
.s("BackplaneControlService", "FlushStageCache", {})
|
|
2741
593
|
.n("APIGatewayClient", "FlushStageCacheCommand")
|
|
2742
|
-
.sc(FlushStageCache$)
|
|
594
|
+
.sc(schemas_0.FlushStageCache$)
|
|
2743
595
|
.build() {
|
|
2744
596
|
}
|
|
2745
597
|
|
|
@@ -2751,7 +603,7 @@ class GenerateClientCertificateCommand extends smithyClient.Command
|
|
|
2751
603
|
})
|
|
2752
604
|
.s("BackplaneControlService", "GenerateClientCertificate", {})
|
|
2753
605
|
.n("APIGatewayClient", "GenerateClientCertificateCommand")
|
|
2754
|
-
.sc(GenerateClientCertificate$)
|
|
606
|
+
.sc(schemas_0.GenerateClientCertificate$)
|
|
2755
607
|
.build() {
|
|
2756
608
|
}
|
|
2757
609
|
|
|
@@ -2763,7 +615,7 @@ class GetAccountCommand extends smithyClient.Command
|
|
|
2763
615
|
})
|
|
2764
616
|
.s("BackplaneControlService", "GetAccount", {})
|
|
2765
617
|
.n("APIGatewayClient", "GetAccountCommand")
|
|
2766
|
-
.sc(GetAccount$)
|
|
618
|
+
.sc(schemas_0.GetAccount$)
|
|
2767
619
|
.build() {
|
|
2768
620
|
}
|
|
2769
621
|
|
|
@@ -2775,7 +627,7 @@ class GetApiKeyCommand extends smithyClient.Command
|
|
|
2775
627
|
})
|
|
2776
628
|
.s("BackplaneControlService", "GetApiKey", {})
|
|
2777
629
|
.n("APIGatewayClient", "GetApiKeyCommand")
|
|
2778
|
-
.sc(GetApiKey$)
|
|
630
|
+
.sc(schemas_0.GetApiKey$)
|
|
2779
631
|
.build() {
|
|
2780
632
|
}
|
|
2781
633
|
|
|
@@ -2787,7 +639,7 @@ class GetApiKeysCommand extends smithyClient.Command
|
|
|
2787
639
|
})
|
|
2788
640
|
.s("BackplaneControlService", "GetApiKeys", {})
|
|
2789
641
|
.n("APIGatewayClient", "GetApiKeysCommand")
|
|
2790
|
-
.sc(GetApiKeys$)
|
|
642
|
+
.sc(schemas_0.GetApiKeys$)
|
|
2791
643
|
.build() {
|
|
2792
644
|
}
|
|
2793
645
|
|
|
@@ -2799,7 +651,7 @@ class GetAuthorizerCommand extends smithyClient.Command
|
|
|
2799
651
|
})
|
|
2800
652
|
.s("BackplaneControlService", "GetAuthorizer", {})
|
|
2801
653
|
.n("APIGatewayClient", "GetAuthorizerCommand")
|
|
2802
|
-
.sc(GetAuthorizer$)
|
|
654
|
+
.sc(schemas_0.GetAuthorizer$)
|
|
2803
655
|
.build() {
|
|
2804
656
|
}
|
|
2805
657
|
|
|
@@ -2811,7 +663,7 @@ class GetAuthorizersCommand extends smithyClient.Command
|
|
|
2811
663
|
})
|
|
2812
664
|
.s("BackplaneControlService", "GetAuthorizers", {})
|
|
2813
665
|
.n("APIGatewayClient", "GetAuthorizersCommand")
|
|
2814
|
-
.sc(GetAuthorizers$)
|
|
666
|
+
.sc(schemas_0.GetAuthorizers$)
|
|
2815
667
|
.build() {
|
|
2816
668
|
}
|
|
2817
669
|
|
|
@@ -2823,7 +675,7 @@ class GetBasePathMappingCommand extends smithyClient.Command
|
|
|
2823
675
|
})
|
|
2824
676
|
.s("BackplaneControlService", "GetBasePathMapping", {})
|
|
2825
677
|
.n("APIGatewayClient", "GetBasePathMappingCommand")
|
|
2826
|
-
.sc(GetBasePathMapping$)
|
|
678
|
+
.sc(schemas_0.GetBasePathMapping$)
|
|
2827
679
|
.build() {
|
|
2828
680
|
}
|
|
2829
681
|
|
|
@@ -2835,7 +687,7 @@ class GetBasePathMappingsCommand extends smithyClient.Command
|
|
|
2835
687
|
})
|
|
2836
688
|
.s("BackplaneControlService", "GetBasePathMappings", {})
|
|
2837
689
|
.n("APIGatewayClient", "GetBasePathMappingsCommand")
|
|
2838
|
-
.sc(GetBasePathMappings$)
|
|
690
|
+
.sc(schemas_0.GetBasePathMappings$)
|
|
2839
691
|
.build() {
|
|
2840
692
|
}
|
|
2841
693
|
|
|
@@ -2847,7 +699,7 @@ class GetClientCertificateCommand extends smithyClient.Command
|
|
|
2847
699
|
})
|
|
2848
700
|
.s("BackplaneControlService", "GetClientCertificate", {})
|
|
2849
701
|
.n("APIGatewayClient", "GetClientCertificateCommand")
|
|
2850
|
-
.sc(GetClientCertificate$)
|
|
702
|
+
.sc(schemas_0.GetClientCertificate$)
|
|
2851
703
|
.build() {
|
|
2852
704
|
}
|
|
2853
705
|
|
|
@@ -2859,7 +711,7 @@ class GetClientCertificatesCommand extends smithyClient.Command
|
|
|
2859
711
|
})
|
|
2860
712
|
.s("BackplaneControlService", "GetClientCertificates", {})
|
|
2861
713
|
.n("APIGatewayClient", "GetClientCertificatesCommand")
|
|
2862
|
-
.sc(GetClientCertificates$)
|
|
714
|
+
.sc(schemas_0.GetClientCertificates$)
|
|
2863
715
|
.build() {
|
|
2864
716
|
}
|
|
2865
717
|
|
|
@@ -2871,7 +723,7 @@ class GetDeploymentCommand extends smithyClient.Command
|
|
|
2871
723
|
})
|
|
2872
724
|
.s("BackplaneControlService", "GetDeployment", {})
|
|
2873
725
|
.n("APIGatewayClient", "GetDeploymentCommand")
|
|
2874
|
-
.sc(GetDeployment$)
|
|
726
|
+
.sc(schemas_0.GetDeployment$)
|
|
2875
727
|
.build() {
|
|
2876
728
|
}
|
|
2877
729
|
|
|
@@ -2883,7 +735,7 @@ class GetDeploymentsCommand extends smithyClient.Command
|
|
|
2883
735
|
})
|
|
2884
736
|
.s("BackplaneControlService", "GetDeployments", {})
|
|
2885
737
|
.n("APIGatewayClient", "GetDeploymentsCommand")
|
|
2886
|
-
.sc(GetDeployments$)
|
|
738
|
+
.sc(schemas_0.GetDeployments$)
|
|
2887
739
|
.build() {
|
|
2888
740
|
}
|
|
2889
741
|
|
|
@@ -2895,7 +747,7 @@ class GetDocumentationPartCommand extends smithyClient.Command
|
|
|
2895
747
|
})
|
|
2896
748
|
.s("BackplaneControlService", "GetDocumentationPart", {})
|
|
2897
749
|
.n("APIGatewayClient", "GetDocumentationPartCommand")
|
|
2898
|
-
.sc(GetDocumentationPart$)
|
|
750
|
+
.sc(schemas_0.GetDocumentationPart$)
|
|
2899
751
|
.build() {
|
|
2900
752
|
}
|
|
2901
753
|
|
|
@@ -2907,7 +759,7 @@ class GetDocumentationPartsCommand extends smithyClient.Command
|
|
|
2907
759
|
})
|
|
2908
760
|
.s("BackplaneControlService", "GetDocumentationParts", {})
|
|
2909
761
|
.n("APIGatewayClient", "GetDocumentationPartsCommand")
|
|
2910
|
-
.sc(GetDocumentationParts$)
|
|
762
|
+
.sc(schemas_0.GetDocumentationParts$)
|
|
2911
763
|
.build() {
|
|
2912
764
|
}
|
|
2913
765
|
|
|
@@ -2919,7 +771,7 @@ class GetDocumentationVersionCommand extends smithyClient.Command
|
|
|
2919
771
|
})
|
|
2920
772
|
.s("BackplaneControlService", "GetDocumentationVersion", {})
|
|
2921
773
|
.n("APIGatewayClient", "GetDocumentationVersionCommand")
|
|
2922
|
-
.sc(GetDocumentationVersion$)
|
|
774
|
+
.sc(schemas_0.GetDocumentationVersion$)
|
|
2923
775
|
.build() {
|
|
2924
776
|
}
|
|
2925
777
|
|
|
@@ -2931,7 +783,7 @@ class GetDocumentationVersionsCommand extends smithyClient.Command
|
|
|
2931
783
|
})
|
|
2932
784
|
.s("BackplaneControlService", "GetDocumentationVersions", {})
|
|
2933
785
|
.n("APIGatewayClient", "GetDocumentationVersionsCommand")
|
|
2934
|
-
.sc(GetDocumentationVersions$)
|
|
786
|
+
.sc(schemas_0.GetDocumentationVersions$)
|
|
2935
787
|
.build() {
|
|
2936
788
|
}
|
|
2937
789
|
|
|
@@ -2943,7 +795,7 @@ class GetDomainNameAccessAssociationsCommand extends smithyClient.Command
|
|
|
2943
795
|
})
|
|
2944
796
|
.s("BackplaneControlService", "GetDomainNameAccessAssociations", {})
|
|
2945
797
|
.n("APIGatewayClient", "GetDomainNameAccessAssociationsCommand")
|
|
2946
|
-
.sc(GetDomainNameAccessAssociations$)
|
|
798
|
+
.sc(schemas_0.GetDomainNameAccessAssociations$)
|
|
2947
799
|
.build() {
|
|
2948
800
|
}
|
|
2949
801
|
|
|
@@ -2955,7 +807,7 @@ class GetDomainNameCommand extends smithyClient.Command
|
|
|
2955
807
|
})
|
|
2956
808
|
.s("BackplaneControlService", "GetDomainName", {})
|
|
2957
809
|
.n("APIGatewayClient", "GetDomainNameCommand")
|
|
2958
|
-
.sc(GetDomainName$)
|
|
810
|
+
.sc(schemas_0.GetDomainName$)
|
|
2959
811
|
.build() {
|
|
2960
812
|
}
|
|
2961
813
|
|
|
@@ -2967,7 +819,7 @@ class GetDomainNamesCommand extends smithyClient.Command
|
|
|
2967
819
|
})
|
|
2968
820
|
.s("BackplaneControlService", "GetDomainNames", {})
|
|
2969
821
|
.n("APIGatewayClient", "GetDomainNamesCommand")
|
|
2970
|
-
.sc(GetDomainNames$)
|
|
822
|
+
.sc(schemas_0.GetDomainNames$)
|
|
2971
823
|
.build() {
|
|
2972
824
|
}
|
|
2973
825
|
|
|
@@ -2979,7 +831,7 @@ class GetExportCommand extends smithyClient.Command
|
|
|
2979
831
|
})
|
|
2980
832
|
.s("BackplaneControlService", "GetExport", {})
|
|
2981
833
|
.n("APIGatewayClient", "GetExportCommand")
|
|
2982
|
-
.sc(GetExport$)
|
|
834
|
+
.sc(schemas_0.GetExport$)
|
|
2983
835
|
.build() {
|
|
2984
836
|
}
|
|
2985
837
|
|
|
@@ -2991,7 +843,7 @@ class GetGatewayResponseCommand extends smithyClient.Command
|
|
|
2991
843
|
})
|
|
2992
844
|
.s("BackplaneControlService", "GetGatewayResponse", {})
|
|
2993
845
|
.n("APIGatewayClient", "GetGatewayResponseCommand")
|
|
2994
|
-
.sc(GetGatewayResponse$)
|
|
846
|
+
.sc(schemas_0.GetGatewayResponse$)
|
|
2995
847
|
.build() {
|
|
2996
848
|
}
|
|
2997
849
|
|
|
@@ -3003,7 +855,7 @@ class GetGatewayResponsesCommand extends smithyClient.Command
|
|
|
3003
855
|
})
|
|
3004
856
|
.s("BackplaneControlService", "GetGatewayResponses", {})
|
|
3005
857
|
.n("APIGatewayClient", "GetGatewayResponsesCommand")
|
|
3006
|
-
.sc(GetGatewayResponses$)
|
|
858
|
+
.sc(schemas_0.GetGatewayResponses$)
|
|
3007
859
|
.build() {
|
|
3008
860
|
}
|
|
3009
861
|
|
|
@@ -3015,7 +867,7 @@ class GetIntegrationCommand extends smithyClient.Command
|
|
|
3015
867
|
})
|
|
3016
868
|
.s("BackplaneControlService", "GetIntegration", {})
|
|
3017
869
|
.n("APIGatewayClient", "GetIntegrationCommand")
|
|
3018
|
-
.sc(GetIntegration$)
|
|
870
|
+
.sc(schemas_0.GetIntegration$)
|
|
3019
871
|
.build() {
|
|
3020
872
|
}
|
|
3021
873
|
|
|
@@ -3027,7 +879,7 @@ class GetIntegrationResponseCommand extends smithyClient.Command
|
|
|
3027
879
|
})
|
|
3028
880
|
.s("BackplaneControlService", "GetIntegrationResponse", {})
|
|
3029
881
|
.n("APIGatewayClient", "GetIntegrationResponseCommand")
|
|
3030
|
-
.sc(GetIntegrationResponse$)
|
|
882
|
+
.sc(schemas_0.GetIntegrationResponse$)
|
|
3031
883
|
.build() {
|
|
3032
884
|
}
|
|
3033
885
|
|
|
@@ -3039,7 +891,7 @@ class GetMethodCommand extends smithyClient.Command
|
|
|
3039
891
|
})
|
|
3040
892
|
.s("BackplaneControlService", "GetMethod", {})
|
|
3041
893
|
.n("APIGatewayClient", "GetMethodCommand")
|
|
3042
|
-
.sc(GetMethod$)
|
|
894
|
+
.sc(schemas_0.GetMethod$)
|
|
3043
895
|
.build() {
|
|
3044
896
|
}
|
|
3045
897
|
|
|
@@ -3051,7 +903,7 @@ class GetMethodResponseCommand extends smithyClient.Command
|
|
|
3051
903
|
})
|
|
3052
904
|
.s("BackplaneControlService", "GetMethodResponse", {})
|
|
3053
905
|
.n("APIGatewayClient", "GetMethodResponseCommand")
|
|
3054
|
-
.sc(GetMethodResponse$)
|
|
906
|
+
.sc(schemas_0.GetMethodResponse$)
|
|
3055
907
|
.build() {
|
|
3056
908
|
}
|
|
3057
909
|
|
|
@@ -3063,7 +915,7 @@ class GetModelCommand extends smithyClient.Command
|
|
|
3063
915
|
})
|
|
3064
916
|
.s("BackplaneControlService", "GetModel", {})
|
|
3065
917
|
.n("APIGatewayClient", "GetModelCommand")
|
|
3066
|
-
.sc(GetModel$)
|
|
918
|
+
.sc(schemas_0.GetModel$)
|
|
3067
919
|
.build() {
|
|
3068
920
|
}
|
|
3069
921
|
|
|
@@ -3075,7 +927,7 @@ class GetModelsCommand extends smithyClient.Command
|
|
|
3075
927
|
})
|
|
3076
928
|
.s("BackplaneControlService", "GetModels", {})
|
|
3077
929
|
.n("APIGatewayClient", "GetModelsCommand")
|
|
3078
|
-
.sc(GetModels$)
|
|
930
|
+
.sc(schemas_0.GetModels$)
|
|
3079
931
|
.build() {
|
|
3080
932
|
}
|
|
3081
933
|
|
|
@@ -3087,7 +939,7 @@ class GetModelTemplateCommand extends smithyClient.Command
|
|
|
3087
939
|
})
|
|
3088
940
|
.s("BackplaneControlService", "GetModelTemplate", {})
|
|
3089
941
|
.n("APIGatewayClient", "GetModelTemplateCommand")
|
|
3090
|
-
.sc(GetModelTemplate$)
|
|
942
|
+
.sc(schemas_0.GetModelTemplate$)
|
|
3091
943
|
.build() {
|
|
3092
944
|
}
|
|
3093
945
|
|
|
@@ -3099,7 +951,7 @@ class GetRequestValidatorCommand extends smithyClient.Command
|
|
|
3099
951
|
})
|
|
3100
952
|
.s("BackplaneControlService", "GetRequestValidator", {})
|
|
3101
953
|
.n("APIGatewayClient", "GetRequestValidatorCommand")
|
|
3102
|
-
.sc(GetRequestValidator$)
|
|
954
|
+
.sc(schemas_0.GetRequestValidator$)
|
|
3103
955
|
.build() {
|
|
3104
956
|
}
|
|
3105
957
|
|
|
@@ -3111,7 +963,7 @@ class GetRequestValidatorsCommand extends smithyClient.Command
|
|
|
3111
963
|
})
|
|
3112
964
|
.s("BackplaneControlService", "GetRequestValidators", {})
|
|
3113
965
|
.n("APIGatewayClient", "GetRequestValidatorsCommand")
|
|
3114
|
-
.sc(GetRequestValidators$)
|
|
966
|
+
.sc(schemas_0.GetRequestValidators$)
|
|
3115
967
|
.build() {
|
|
3116
968
|
}
|
|
3117
969
|
|
|
@@ -3123,7 +975,7 @@ class GetResourceCommand extends smithyClient.Command
|
|
|
3123
975
|
})
|
|
3124
976
|
.s("BackplaneControlService", "GetResource", {})
|
|
3125
977
|
.n("APIGatewayClient", "GetResourceCommand")
|
|
3126
|
-
.sc(GetResource$)
|
|
978
|
+
.sc(schemas_0.GetResource$)
|
|
3127
979
|
.build() {
|
|
3128
980
|
}
|
|
3129
981
|
|
|
@@ -3135,7 +987,7 @@ class GetResourcesCommand extends smithyClient.Command
|
|
|
3135
987
|
})
|
|
3136
988
|
.s("BackplaneControlService", "GetResources", {})
|
|
3137
989
|
.n("APIGatewayClient", "GetResourcesCommand")
|
|
3138
|
-
.sc(GetResources$)
|
|
990
|
+
.sc(schemas_0.GetResources$)
|
|
3139
991
|
.build() {
|
|
3140
992
|
}
|
|
3141
993
|
|
|
@@ -3147,7 +999,7 @@ class GetRestApiCommand extends smithyClient.Command
|
|
|
3147
999
|
})
|
|
3148
1000
|
.s("BackplaneControlService", "GetRestApi", {})
|
|
3149
1001
|
.n("APIGatewayClient", "GetRestApiCommand")
|
|
3150
|
-
.sc(GetRestApi$)
|
|
1002
|
+
.sc(schemas_0.GetRestApi$)
|
|
3151
1003
|
.build() {
|
|
3152
1004
|
}
|
|
3153
1005
|
|
|
@@ -3159,7 +1011,7 @@ class GetRestApisCommand extends smithyClient.Command
|
|
|
3159
1011
|
})
|
|
3160
1012
|
.s("BackplaneControlService", "GetRestApis", {})
|
|
3161
1013
|
.n("APIGatewayClient", "GetRestApisCommand")
|
|
3162
|
-
.sc(GetRestApis$)
|
|
1014
|
+
.sc(schemas_0.GetRestApis$)
|
|
3163
1015
|
.build() {
|
|
3164
1016
|
}
|
|
3165
1017
|
|
|
@@ -3171,7 +1023,7 @@ class GetSdkCommand extends smithyClient.Command
|
|
|
3171
1023
|
})
|
|
3172
1024
|
.s("BackplaneControlService", "GetSdk", {})
|
|
3173
1025
|
.n("APIGatewayClient", "GetSdkCommand")
|
|
3174
|
-
.sc(GetSdk$)
|
|
1026
|
+
.sc(schemas_0.GetSdk$)
|
|
3175
1027
|
.build() {
|
|
3176
1028
|
}
|
|
3177
1029
|
|
|
@@ -3183,7 +1035,7 @@ class GetSdkTypeCommand extends smithyClient.Command
|
|
|
3183
1035
|
})
|
|
3184
1036
|
.s("BackplaneControlService", "GetSdkType", {})
|
|
3185
1037
|
.n("APIGatewayClient", "GetSdkTypeCommand")
|
|
3186
|
-
.sc(GetSdkType$)
|
|
1038
|
+
.sc(schemas_0.GetSdkType$)
|
|
3187
1039
|
.build() {
|
|
3188
1040
|
}
|
|
3189
1041
|
|
|
@@ -3195,7 +1047,7 @@ class GetSdkTypesCommand extends smithyClient.Command
|
|
|
3195
1047
|
})
|
|
3196
1048
|
.s("BackplaneControlService", "GetSdkTypes", {})
|
|
3197
1049
|
.n("APIGatewayClient", "GetSdkTypesCommand")
|
|
3198
|
-
.sc(GetSdkTypes$)
|
|
1050
|
+
.sc(schemas_0.GetSdkTypes$)
|
|
3199
1051
|
.build() {
|
|
3200
1052
|
}
|
|
3201
1053
|
|
|
@@ -3207,7 +1059,7 @@ class GetStageCommand extends smithyClient.Command
|
|
|
3207
1059
|
})
|
|
3208
1060
|
.s("BackplaneControlService", "GetStage", {})
|
|
3209
1061
|
.n("APIGatewayClient", "GetStageCommand")
|
|
3210
|
-
.sc(GetStage$)
|
|
1062
|
+
.sc(schemas_0.GetStage$)
|
|
3211
1063
|
.build() {
|
|
3212
1064
|
}
|
|
3213
1065
|
|
|
@@ -3219,7 +1071,7 @@ class GetStagesCommand extends smithyClient.Command
|
|
|
3219
1071
|
})
|
|
3220
1072
|
.s("BackplaneControlService", "GetStages", {})
|
|
3221
1073
|
.n("APIGatewayClient", "GetStagesCommand")
|
|
3222
|
-
.sc(GetStages$)
|
|
1074
|
+
.sc(schemas_0.GetStages$)
|
|
3223
1075
|
.build() {
|
|
3224
1076
|
}
|
|
3225
1077
|
|
|
@@ -3231,7 +1083,7 @@ class GetTagsCommand extends smithyClient.Command
|
|
|
3231
1083
|
})
|
|
3232
1084
|
.s("BackplaneControlService", "GetTags", {})
|
|
3233
1085
|
.n("APIGatewayClient", "GetTagsCommand")
|
|
3234
|
-
.sc(GetTags$)
|
|
1086
|
+
.sc(schemas_0.GetTags$)
|
|
3235
1087
|
.build() {
|
|
3236
1088
|
}
|
|
3237
1089
|
|
|
@@ -3243,7 +1095,7 @@ class GetUsageCommand extends smithyClient.Command
|
|
|
3243
1095
|
})
|
|
3244
1096
|
.s("BackplaneControlService", "GetUsage", {})
|
|
3245
1097
|
.n("APIGatewayClient", "GetUsageCommand")
|
|
3246
|
-
.sc(GetUsage$)
|
|
1098
|
+
.sc(schemas_0.GetUsage$)
|
|
3247
1099
|
.build() {
|
|
3248
1100
|
}
|
|
3249
1101
|
|
|
@@ -3255,7 +1107,7 @@ class GetUsagePlanCommand extends smithyClient.Command
|
|
|
3255
1107
|
})
|
|
3256
1108
|
.s("BackplaneControlService", "GetUsagePlan", {})
|
|
3257
1109
|
.n("APIGatewayClient", "GetUsagePlanCommand")
|
|
3258
|
-
.sc(GetUsagePlan$)
|
|
1110
|
+
.sc(schemas_0.GetUsagePlan$)
|
|
3259
1111
|
.build() {
|
|
3260
1112
|
}
|
|
3261
1113
|
|
|
@@ -3267,7 +1119,7 @@ class GetUsagePlanKeyCommand extends smithyClient.Command
|
|
|
3267
1119
|
})
|
|
3268
1120
|
.s("BackplaneControlService", "GetUsagePlanKey", {})
|
|
3269
1121
|
.n("APIGatewayClient", "GetUsagePlanKeyCommand")
|
|
3270
|
-
.sc(GetUsagePlanKey$)
|
|
1122
|
+
.sc(schemas_0.GetUsagePlanKey$)
|
|
3271
1123
|
.build() {
|
|
3272
1124
|
}
|
|
3273
1125
|
|
|
@@ -3279,7 +1131,7 @@ class GetUsagePlanKeysCommand extends smithyClient.Command
|
|
|
3279
1131
|
})
|
|
3280
1132
|
.s("BackplaneControlService", "GetUsagePlanKeys", {})
|
|
3281
1133
|
.n("APIGatewayClient", "GetUsagePlanKeysCommand")
|
|
3282
|
-
.sc(GetUsagePlanKeys$)
|
|
1134
|
+
.sc(schemas_0.GetUsagePlanKeys$)
|
|
3283
1135
|
.build() {
|
|
3284
1136
|
}
|
|
3285
1137
|
|
|
@@ -3291,7 +1143,7 @@ class GetUsagePlansCommand extends smithyClient.Command
|
|
|
3291
1143
|
})
|
|
3292
1144
|
.s("BackplaneControlService", "GetUsagePlans", {})
|
|
3293
1145
|
.n("APIGatewayClient", "GetUsagePlansCommand")
|
|
3294
|
-
.sc(GetUsagePlans$)
|
|
1146
|
+
.sc(schemas_0.GetUsagePlans$)
|
|
3295
1147
|
.build() {
|
|
3296
1148
|
}
|
|
3297
1149
|
|
|
@@ -3303,7 +1155,7 @@ class GetVpcLinkCommand extends smithyClient.Command
|
|
|
3303
1155
|
})
|
|
3304
1156
|
.s("BackplaneControlService", "GetVpcLink", {})
|
|
3305
1157
|
.n("APIGatewayClient", "GetVpcLinkCommand")
|
|
3306
|
-
.sc(GetVpcLink$)
|
|
1158
|
+
.sc(schemas_0.GetVpcLink$)
|
|
3307
1159
|
.build() {
|
|
3308
1160
|
}
|
|
3309
1161
|
|
|
@@ -3315,7 +1167,7 @@ class GetVpcLinksCommand extends smithyClient.Command
|
|
|
3315
1167
|
})
|
|
3316
1168
|
.s("BackplaneControlService", "GetVpcLinks", {})
|
|
3317
1169
|
.n("APIGatewayClient", "GetVpcLinksCommand")
|
|
3318
|
-
.sc(GetVpcLinks$)
|
|
1170
|
+
.sc(schemas_0.GetVpcLinks$)
|
|
3319
1171
|
.build() {
|
|
3320
1172
|
}
|
|
3321
1173
|
|
|
@@ -3327,7 +1179,7 @@ class ImportApiKeysCommand extends smithyClient.Command
|
|
|
3327
1179
|
})
|
|
3328
1180
|
.s("BackplaneControlService", "ImportApiKeys", {})
|
|
3329
1181
|
.n("APIGatewayClient", "ImportApiKeysCommand")
|
|
3330
|
-
.sc(ImportApiKeys$)
|
|
1182
|
+
.sc(schemas_0.ImportApiKeys$)
|
|
3331
1183
|
.build() {
|
|
3332
1184
|
}
|
|
3333
1185
|
|
|
@@ -3339,7 +1191,7 @@ class ImportDocumentationPartsCommand extends smithyClient.Command
|
|
|
3339
1191
|
})
|
|
3340
1192
|
.s("BackplaneControlService", "ImportDocumentationParts", {})
|
|
3341
1193
|
.n("APIGatewayClient", "ImportDocumentationPartsCommand")
|
|
3342
|
-
.sc(ImportDocumentationParts$)
|
|
1194
|
+
.sc(schemas_0.ImportDocumentationParts$)
|
|
3343
1195
|
.build() {
|
|
3344
1196
|
}
|
|
3345
1197
|
|
|
@@ -3351,7 +1203,7 @@ class ImportRestApiCommand extends smithyClient.Command
|
|
|
3351
1203
|
})
|
|
3352
1204
|
.s("BackplaneControlService", "ImportRestApi", {})
|
|
3353
1205
|
.n("APIGatewayClient", "ImportRestApiCommand")
|
|
3354
|
-
.sc(ImportRestApi$)
|
|
1206
|
+
.sc(schemas_0.ImportRestApi$)
|
|
3355
1207
|
.build() {
|
|
3356
1208
|
}
|
|
3357
1209
|
|
|
@@ -3363,7 +1215,7 @@ class PutGatewayResponseCommand extends smithyClient.Command
|
|
|
3363
1215
|
})
|
|
3364
1216
|
.s("BackplaneControlService", "PutGatewayResponse", {})
|
|
3365
1217
|
.n("APIGatewayClient", "PutGatewayResponseCommand")
|
|
3366
|
-
.sc(PutGatewayResponse$)
|
|
1218
|
+
.sc(schemas_0.PutGatewayResponse$)
|
|
3367
1219
|
.build() {
|
|
3368
1220
|
}
|
|
3369
1221
|
|
|
@@ -3375,7 +1227,7 @@ class PutIntegrationCommand extends smithyClient.Command
|
|
|
3375
1227
|
})
|
|
3376
1228
|
.s("BackplaneControlService", "PutIntegration", {})
|
|
3377
1229
|
.n("APIGatewayClient", "PutIntegrationCommand")
|
|
3378
|
-
.sc(PutIntegration$)
|
|
1230
|
+
.sc(schemas_0.PutIntegration$)
|
|
3379
1231
|
.build() {
|
|
3380
1232
|
}
|
|
3381
1233
|
|
|
@@ -3387,7 +1239,7 @@ class PutIntegrationResponseCommand extends smithyClient.Command
|
|
|
3387
1239
|
})
|
|
3388
1240
|
.s("BackplaneControlService", "PutIntegrationResponse", {})
|
|
3389
1241
|
.n("APIGatewayClient", "PutIntegrationResponseCommand")
|
|
3390
|
-
.sc(PutIntegrationResponse$)
|
|
1242
|
+
.sc(schemas_0.PutIntegrationResponse$)
|
|
3391
1243
|
.build() {
|
|
3392
1244
|
}
|
|
3393
1245
|
|
|
@@ -3399,7 +1251,7 @@ class PutMethodCommand extends smithyClient.Command
|
|
|
3399
1251
|
})
|
|
3400
1252
|
.s("BackplaneControlService", "PutMethod", {})
|
|
3401
1253
|
.n("APIGatewayClient", "PutMethodCommand")
|
|
3402
|
-
.sc(PutMethod$)
|
|
1254
|
+
.sc(schemas_0.PutMethod$)
|
|
3403
1255
|
.build() {
|
|
3404
1256
|
}
|
|
3405
1257
|
|
|
@@ -3411,7 +1263,7 @@ class PutMethodResponseCommand extends smithyClient.Command
|
|
|
3411
1263
|
})
|
|
3412
1264
|
.s("BackplaneControlService", "PutMethodResponse", {})
|
|
3413
1265
|
.n("APIGatewayClient", "PutMethodResponseCommand")
|
|
3414
|
-
.sc(PutMethodResponse$)
|
|
1266
|
+
.sc(schemas_0.PutMethodResponse$)
|
|
3415
1267
|
.build() {
|
|
3416
1268
|
}
|
|
3417
1269
|
|
|
@@ -3423,7 +1275,7 @@ class PutRestApiCommand extends smithyClient.Command
|
|
|
3423
1275
|
})
|
|
3424
1276
|
.s("BackplaneControlService", "PutRestApi", {})
|
|
3425
1277
|
.n("APIGatewayClient", "PutRestApiCommand")
|
|
3426
|
-
.sc(PutRestApi$)
|
|
1278
|
+
.sc(schemas_0.PutRestApi$)
|
|
3427
1279
|
.build() {
|
|
3428
1280
|
}
|
|
3429
1281
|
|
|
@@ -3435,7 +1287,7 @@ class RejectDomainNameAccessAssociationCommand extends smithyClient.Command
|
|
|
3435
1287
|
})
|
|
3436
1288
|
.s("BackplaneControlService", "RejectDomainNameAccessAssociation", {})
|
|
3437
1289
|
.n("APIGatewayClient", "RejectDomainNameAccessAssociationCommand")
|
|
3438
|
-
.sc(RejectDomainNameAccessAssociation$)
|
|
1290
|
+
.sc(schemas_0.RejectDomainNameAccessAssociation$)
|
|
3439
1291
|
.build() {
|
|
3440
1292
|
}
|
|
3441
1293
|
|
|
@@ -3447,7 +1299,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3447
1299
|
})
|
|
3448
1300
|
.s("BackplaneControlService", "TagResource", {})
|
|
3449
1301
|
.n("APIGatewayClient", "TagResourceCommand")
|
|
3450
|
-
.sc(TagResource$)
|
|
1302
|
+
.sc(schemas_0.TagResource$)
|
|
3451
1303
|
.build() {
|
|
3452
1304
|
}
|
|
3453
1305
|
|
|
@@ -3459,7 +1311,7 @@ class TestInvokeAuthorizerCommand extends smithyClient.Command
|
|
|
3459
1311
|
})
|
|
3460
1312
|
.s("BackplaneControlService", "TestInvokeAuthorizer", {})
|
|
3461
1313
|
.n("APIGatewayClient", "TestInvokeAuthorizerCommand")
|
|
3462
|
-
.sc(TestInvokeAuthorizer$)
|
|
1314
|
+
.sc(schemas_0.TestInvokeAuthorizer$)
|
|
3463
1315
|
.build() {
|
|
3464
1316
|
}
|
|
3465
1317
|
|
|
@@ -3471,7 +1323,7 @@ class TestInvokeMethodCommand extends smithyClient.Command
|
|
|
3471
1323
|
})
|
|
3472
1324
|
.s("BackplaneControlService", "TestInvokeMethod", {})
|
|
3473
1325
|
.n("APIGatewayClient", "TestInvokeMethodCommand")
|
|
3474
|
-
.sc(TestInvokeMethod$)
|
|
1326
|
+
.sc(schemas_0.TestInvokeMethod$)
|
|
3475
1327
|
.build() {
|
|
3476
1328
|
}
|
|
3477
1329
|
|
|
@@ -3483,7 +1335,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3483
1335
|
})
|
|
3484
1336
|
.s("BackplaneControlService", "UntagResource", {})
|
|
3485
1337
|
.n("APIGatewayClient", "UntagResourceCommand")
|
|
3486
|
-
.sc(UntagResource$)
|
|
1338
|
+
.sc(schemas_0.UntagResource$)
|
|
3487
1339
|
.build() {
|
|
3488
1340
|
}
|
|
3489
1341
|
|
|
@@ -3495,7 +1347,7 @@ class UpdateAccountCommand extends smithyClient.Command
|
|
|
3495
1347
|
})
|
|
3496
1348
|
.s("BackplaneControlService", "UpdateAccount", {})
|
|
3497
1349
|
.n("APIGatewayClient", "UpdateAccountCommand")
|
|
3498
|
-
.sc(UpdateAccount$)
|
|
1350
|
+
.sc(schemas_0.UpdateAccount$)
|
|
3499
1351
|
.build() {
|
|
3500
1352
|
}
|
|
3501
1353
|
|
|
@@ -3507,7 +1359,7 @@ class UpdateApiKeyCommand extends smithyClient.Command
|
|
|
3507
1359
|
})
|
|
3508
1360
|
.s("BackplaneControlService", "UpdateApiKey", {})
|
|
3509
1361
|
.n("APIGatewayClient", "UpdateApiKeyCommand")
|
|
3510
|
-
.sc(UpdateApiKey$)
|
|
1362
|
+
.sc(schemas_0.UpdateApiKey$)
|
|
3511
1363
|
.build() {
|
|
3512
1364
|
}
|
|
3513
1365
|
|
|
@@ -3519,7 +1371,7 @@ class UpdateAuthorizerCommand extends smithyClient.Command
|
|
|
3519
1371
|
})
|
|
3520
1372
|
.s("BackplaneControlService", "UpdateAuthorizer", {})
|
|
3521
1373
|
.n("APIGatewayClient", "UpdateAuthorizerCommand")
|
|
3522
|
-
.sc(UpdateAuthorizer$)
|
|
1374
|
+
.sc(schemas_0.UpdateAuthorizer$)
|
|
3523
1375
|
.build() {
|
|
3524
1376
|
}
|
|
3525
1377
|
|
|
@@ -3531,7 +1383,7 @@ class UpdateBasePathMappingCommand extends smithyClient.Command
|
|
|
3531
1383
|
})
|
|
3532
1384
|
.s("BackplaneControlService", "UpdateBasePathMapping", {})
|
|
3533
1385
|
.n("APIGatewayClient", "UpdateBasePathMappingCommand")
|
|
3534
|
-
.sc(UpdateBasePathMapping$)
|
|
1386
|
+
.sc(schemas_0.UpdateBasePathMapping$)
|
|
3535
1387
|
.build() {
|
|
3536
1388
|
}
|
|
3537
1389
|
|
|
@@ -3543,7 +1395,7 @@ class UpdateClientCertificateCommand extends smithyClient.Command
|
|
|
3543
1395
|
})
|
|
3544
1396
|
.s("BackplaneControlService", "UpdateClientCertificate", {})
|
|
3545
1397
|
.n("APIGatewayClient", "UpdateClientCertificateCommand")
|
|
3546
|
-
.sc(UpdateClientCertificate$)
|
|
1398
|
+
.sc(schemas_0.UpdateClientCertificate$)
|
|
3547
1399
|
.build() {
|
|
3548
1400
|
}
|
|
3549
1401
|
|
|
@@ -3555,7 +1407,7 @@ class UpdateDeploymentCommand extends smithyClient.Command
|
|
|
3555
1407
|
})
|
|
3556
1408
|
.s("BackplaneControlService", "UpdateDeployment", {})
|
|
3557
1409
|
.n("APIGatewayClient", "UpdateDeploymentCommand")
|
|
3558
|
-
.sc(UpdateDeployment$)
|
|
1410
|
+
.sc(schemas_0.UpdateDeployment$)
|
|
3559
1411
|
.build() {
|
|
3560
1412
|
}
|
|
3561
1413
|
|
|
@@ -3567,7 +1419,7 @@ class UpdateDocumentationPartCommand extends smithyClient.Command
|
|
|
3567
1419
|
})
|
|
3568
1420
|
.s("BackplaneControlService", "UpdateDocumentationPart", {})
|
|
3569
1421
|
.n("APIGatewayClient", "UpdateDocumentationPartCommand")
|
|
3570
|
-
.sc(UpdateDocumentationPart$)
|
|
1422
|
+
.sc(schemas_0.UpdateDocumentationPart$)
|
|
3571
1423
|
.build() {
|
|
3572
1424
|
}
|
|
3573
1425
|
|
|
@@ -3579,7 +1431,7 @@ class UpdateDocumentationVersionCommand extends smithyClient.Command
|
|
|
3579
1431
|
})
|
|
3580
1432
|
.s("BackplaneControlService", "UpdateDocumentationVersion", {})
|
|
3581
1433
|
.n("APIGatewayClient", "UpdateDocumentationVersionCommand")
|
|
3582
|
-
.sc(UpdateDocumentationVersion$)
|
|
1434
|
+
.sc(schemas_0.UpdateDocumentationVersion$)
|
|
3583
1435
|
.build() {
|
|
3584
1436
|
}
|
|
3585
1437
|
|
|
@@ -3591,7 +1443,7 @@ class UpdateDomainNameCommand extends smithyClient.Command
|
|
|
3591
1443
|
})
|
|
3592
1444
|
.s("BackplaneControlService", "UpdateDomainName", {})
|
|
3593
1445
|
.n("APIGatewayClient", "UpdateDomainNameCommand")
|
|
3594
|
-
.sc(UpdateDomainName$)
|
|
1446
|
+
.sc(schemas_0.UpdateDomainName$)
|
|
3595
1447
|
.build() {
|
|
3596
1448
|
}
|
|
3597
1449
|
|
|
@@ -3603,7 +1455,7 @@ class UpdateGatewayResponseCommand extends smithyClient.Command
|
|
|
3603
1455
|
})
|
|
3604
1456
|
.s("BackplaneControlService", "UpdateGatewayResponse", {})
|
|
3605
1457
|
.n("APIGatewayClient", "UpdateGatewayResponseCommand")
|
|
3606
|
-
.sc(UpdateGatewayResponse$)
|
|
1458
|
+
.sc(schemas_0.UpdateGatewayResponse$)
|
|
3607
1459
|
.build() {
|
|
3608
1460
|
}
|
|
3609
1461
|
|
|
@@ -3615,7 +1467,7 @@ class UpdateIntegrationCommand extends smithyClient.Command
|
|
|
3615
1467
|
})
|
|
3616
1468
|
.s("BackplaneControlService", "UpdateIntegration", {})
|
|
3617
1469
|
.n("APIGatewayClient", "UpdateIntegrationCommand")
|
|
3618
|
-
.sc(UpdateIntegration$)
|
|
1470
|
+
.sc(schemas_0.UpdateIntegration$)
|
|
3619
1471
|
.build() {
|
|
3620
1472
|
}
|
|
3621
1473
|
|
|
@@ -3627,7 +1479,7 @@ class UpdateIntegrationResponseCommand extends smithyClient.Command
|
|
|
3627
1479
|
})
|
|
3628
1480
|
.s("BackplaneControlService", "UpdateIntegrationResponse", {})
|
|
3629
1481
|
.n("APIGatewayClient", "UpdateIntegrationResponseCommand")
|
|
3630
|
-
.sc(UpdateIntegrationResponse$)
|
|
1482
|
+
.sc(schemas_0.UpdateIntegrationResponse$)
|
|
3631
1483
|
.build() {
|
|
3632
1484
|
}
|
|
3633
1485
|
|
|
@@ -3639,7 +1491,7 @@ class UpdateMethodCommand extends smithyClient.Command
|
|
|
3639
1491
|
})
|
|
3640
1492
|
.s("BackplaneControlService", "UpdateMethod", {})
|
|
3641
1493
|
.n("APIGatewayClient", "UpdateMethodCommand")
|
|
3642
|
-
.sc(UpdateMethod$)
|
|
1494
|
+
.sc(schemas_0.UpdateMethod$)
|
|
3643
1495
|
.build() {
|
|
3644
1496
|
}
|
|
3645
1497
|
|
|
@@ -3651,7 +1503,7 @@ class UpdateMethodResponseCommand extends smithyClient.Command
|
|
|
3651
1503
|
})
|
|
3652
1504
|
.s("BackplaneControlService", "UpdateMethodResponse", {})
|
|
3653
1505
|
.n("APIGatewayClient", "UpdateMethodResponseCommand")
|
|
3654
|
-
.sc(UpdateMethodResponse$)
|
|
1506
|
+
.sc(schemas_0.UpdateMethodResponse$)
|
|
3655
1507
|
.build() {
|
|
3656
1508
|
}
|
|
3657
1509
|
|
|
@@ -3663,7 +1515,7 @@ class UpdateModelCommand extends smithyClient.Command
|
|
|
3663
1515
|
})
|
|
3664
1516
|
.s("BackplaneControlService", "UpdateModel", {})
|
|
3665
1517
|
.n("APIGatewayClient", "UpdateModelCommand")
|
|
3666
|
-
.sc(UpdateModel$)
|
|
1518
|
+
.sc(schemas_0.UpdateModel$)
|
|
3667
1519
|
.build() {
|
|
3668
1520
|
}
|
|
3669
1521
|
|
|
@@ -3675,7 +1527,7 @@ class UpdateRequestValidatorCommand extends smithyClient.Command
|
|
|
3675
1527
|
})
|
|
3676
1528
|
.s("BackplaneControlService", "UpdateRequestValidator", {})
|
|
3677
1529
|
.n("APIGatewayClient", "UpdateRequestValidatorCommand")
|
|
3678
|
-
.sc(UpdateRequestValidator$)
|
|
1530
|
+
.sc(schemas_0.UpdateRequestValidator$)
|
|
3679
1531
|
.build() {
|
|
3680
1532
|
}
|
|
3681
1533
|
|
|
@@ -3687,7 +1539,7 @@ class UpdateResourceCommand extends smithyClient.Command
|
|
|
3687
1539
|
})
|
|
3688
1540
|
.s("BackplaneControlService", "UpdateResource", {})
|
|
3689
1541
|
.n("APIGatewayClient", "UpdateResourceCommand")
|
|
3690
|
-
.sc(UpdateResource$)
|
|
1542
|
+
.sc(schemas_0.UpdateResource$)
|
|
3691
1543
|
.build() {
|
|
3692
1544
|
}
|
|
3693
1545
|
|
|
@@ -3699,7 +1551,7 @@ class UpdateRestApiCommand extends smithyClient.Command
|
|
|
3699
1551
|
})
|
|
3700
1552
|
.s("BackplaneControlService", "UpdateRestApi", {})
|
|
3701
1553
|
.n("APIGatewayClient", "UpdateRestApiCommand")
|
|
3702
|
-
.sc(UpdateRestApi$)
|
|
1554
|
+
.sc(schemas_0.UpdateRestApi$)
|
|
3703
1555
|
.build() {
|
|
3704
1556
|
}
|
|
3705
1557
|
|
|
@@ -3711,7 +1563,7 @@ class UpdateStageCommand extends smithyClient.Command
|
|
|
3711
1563
|
})
|
|
3712
1564
|
.s("BackplaneControlService", "UpdateStage", {})
|
|
3713
1565
|
.n("APIGatewayClient", "UpdateStageCommand")
|
|
3714
|
-
.sc(UpdateStage$)
|
|
1566
|
+
.sc(schemas_0.UpdateStage$)
|
|
3715
1567
|
.build() {
|
|
3716
1568
|
}
|
|
3717
1569
|
|
|
@@ -3723,7 +1575,7 @@ class UpdateUsageCommand extends smithyClient.Command
|
|
|
3723
1575
|
})
|
|
3724
1576
|
.s("BackplaneControlService", "UpdateUsage", {})
|
|
3725
1577
|
.n("APIGatewayClient", "UpdateUsageCommand")
|
|
3726
|
-
.sc(UpdateUsage$)
|
|
1578
|
+
.sc(schemas_0.UpdateUsage$)
|
|
3727
1579
|
.build() {
|
|
3728
1580
|
}
|
|
3729
1581
|
|
|
@@ -3735,7 +1587,7 @@ class UpdateUsagePlanCommand extends smithyClient.Command
|
|
|
3735
1587
|
})
|
|
3736
1588
|
.s("BackplaneControlService", "UpdateUsagePlan", {})
|
|
3737
1589
|
.n("APIGatewayClient", "UpdateUsagePlanCommand")
|
|
3738
|
-
.sc(UpdateUsagePlan$)
|
|
1590
|
+
.sc(schemas_0.UpdateUsagePlan$)
|
|
3739
1591
|
.build() {
|
|
3740
1592
|
}
|
|
3741
1593
|
|
|
@@ -3747,7 +1599,7 @@ class UpdateVpcLinkCommand extends smithyClient.Command
|
|
|
3747
1599
|
})
|
|
3748
1600
|
.s("BackplaneControlService", "UpdateVpcLink", {})
|
|
3749
1601
|
.n("APIGatewayClient", "UpdateVpcLinkCommand")
|
|
3750
|
-
.sc(UpdateVpcLink$)
|
|
1602
|
+
.sc(schemas_0.UpdateVpcLink$)
|
|
3751
1603
|
.build() {
|
|
3752
1604
|
}
|
|
3753
1605
|
|
|
@@ -4097,490 +1949,162 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4097
1949
|
enumerable: true,
|
|
4098
1950
|
get: function () { return smithyClient.Client; }
|
|
4099
1951
|
});
|
|
1952
|
+
Object.defineProperty(exports, "APIGatewayServiceException", {
|
|
1953
|
+
enumerable: true,
|
|
1954
|
+
get: function () { return APIGatewayServiceException.APIGatewayServiceException; }
|
|
1955
|
+
});
|
|
4100
1956
|
exports.APIGateway = APIGateway;
|
|
4101
1957
|
exports.APIGatewayClient = APIGatewayClient;
|
|
4102
|
-
exports.APIGatewayServiceException = APIGatewayServiceException;
|
|
4103
|
-
exports.APIGatewayServiceException$ = APIGatewayServiceException$;
|
|
4104
1958
|
exports.AccessAssociationSourceType = AccessAssociationSourceType;
|
|
4105
|
-
exports.AccessLogSettings$ = AccessLogSettings$;
|
|
4106
|
-
exports.Account$ = Account$;
|
|
4107
|
-
exports.ApiKey$ = ApiKey$;
|
|
4108
|
-
exports.ApiKeyIds$ = ApiKeyIds$;
|
|
4109
1959
|
exports.ApiKeySourceType = ApiKeySourceType;
|
|
4110
|
-
exports.ApiKeys$ = ApiKeys$;
|
|
4111
1960
|
exports.ApiKeysFormat = ApiKeysFormat;
|
|
4112
|
-
exports.ApiStage$ = ApiStage$;
|
|
4113
1961
|
exports.ApiStatus = ApiStatus;
|
|
4114
|
-
exports.Authorizer$ = Authorizer$;
|
|
4115
1962
|
exports.AuthorizerType = AuthorizerType;
|
|
4116
|
-
exports.Authorizers$ = Authorizers$;
|
|
4117
|
-
exports.BadRequestException = BadRequestException;
|
|
4118
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
4119
|
-
exports.BasePathMapping$ = BasePathMapping$;
|
|
4120
|
-
exports.BasePathMappings$ = BasePathMappings$;
|
|
4121
1963
|
exports.CacheClusterSize = CacheClusterSize;
|
|
4122
1964
|
exports.CacheClusterStatus = CacheClusterStatus;
|
|
4123
|
-
exports.CanarySettings$ = CanarySettings$;
|
|
4124
|
-
exports.ClientCertificate$ = ClientCertificate$;
|
|
4125
|
-
exports.ClientCertificates$ = ClientCertificates$;
|
|
4126
|
-
exports.ConflictException = ConflictException;
|
|
4127
|
-
exports.ConflictException$ = ConflictException$;
|
|
4128
1965
|
exports.ConnectionType = ConnectionType;
|
|
4129
1966
|
exports.ContentHandlingStrategy = ContentHandlingStrategy;
|
|
4130
|
-
exports.CreateApiKey$ = CreateApiKey$;
|
|
4131
1967
|
exports.CreateApiKeyCommand = CreateApiKeyCommand;
|
|
4132
|
-
exports.CreateApiKeyRequest$ = CreateApiKeyRequest$;
|
|
4133
|
-
exports.CreateAuthorizer$ = CreateAuthorizer$;
|
|
4134
1968
|
exports.CreateAuthorizerCommand = CreateAuthorizerCommand;
|
|
4135
|
-
exports.CreateAuthorizerRequest$ = CreateAuthorizerRequest$;
|
|
4136
|
-
exports.CreateBasePathMapping$ = CreateBasePathMapping$;
|
|
4137
1969
|
exports.CreateBasePathMappingCommand = CreateBasePathMappingCommand;
|
|
4138
|
-
exports.CreateBasePathMappingRequest$ = CreateBasePathMappingRequest$;
|
|
4139
|
-
exports.CreateDeployment$ = CreateDeployment$;
|
|
4140
1970
|
exports.CreateDeploymentCommand = CreateDeploymentCommand;
|
|
4141
|
-
exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
|
|
4142
|
-
exports.CreateDocumentationPart$ = CreateDocumentationPart$;
|
|
4143
1971
|
exports.CreateDocumentationPartCommand = CreateDocumentationPartCommand;
|
|
4144
|
-
exports.CreateDocumentationPartRequest$ = CreateDocumentationPartRequest$;
|
|
4145
|
-
exports.CreateDocumentationVersion$ = CreateDocumentationVersion$;
|
|
4146
1972
|
exports.CreateDocumentationVersionCommand = CreateDocumentationVersionCommand;
|
|
4147
|
-
exports.CreateDocumentationVersionRequest$ = CreateDocumentationVersionRequest$;
|
|
4148
|
-
exports.CreateDomainName$ = CreateDomainName$;
|
|
4149
|
-
exports.CreateDomainNameAccessAssociation$ = CreateDomainNameAccessAssociation$;
|
|
4150
1973
|
exports.CreateDomainNameAccessAssociationCommand = CreateDomainNameAccessAssociationCommand;
|
|
4151
|
-
exports.CreateDomainNameAccessAssociationRequest$ = CreateDomainNameAccessAssociationRequest$;
|
|
4152
1974
|
exports.CreateDomainNameCommand = CreateDomainNameCommand;
|
|
4153
|
-
exports.CreateDomainNameRequest$ = CreateDomainNameRequest$;
|
|
4154
|
-
exports.CreateModel$ = CreateModel$;
|
|
4155
1975
|
exports.CreateModelCommand = CreateModelCommand;
|
|
4156
|
-
exports.CreateModelRequest$ = CreateModelRequest$;
|
|
4157
|
-
exports.CreateRequestValidator$ = CreateRequestValidator$;
|
|
4158
1976
|
exports.CreateRequestValidatorCommand = CreateRequestValidatorCommand;
|
|
4159
|
-
exports.CreateRequestValidatorRequest$ = CreateRequestValidatorRequest$;
|
|
4160
|
-
exports.CreateResource$ = CreateResource$;
|
|
4161
1977
|
exports.CreateResourceCommand = CreateResourceCommand;
|
|
4162
|
-
exports.CreateResourceRequest$ = CreateResourceRequest$;
|
|
4163
|
-
exports.CreateRestApi$ = CreateRestApi$;
|
|
4164
1978
|
exports.CreateRestApiCommand = CreateRestApiCommand;
|
|
4165
|
-
exports.CreateRestApiRequest$ = CreateRestApiRequest$;
|
|
4166
|
-
exports.CreateStage$ = CreateStage$;
|
|
4167
1979
|
exports.CreateStageCommand = CreateStageCommand;
|
|
4168
|
-
exports.CreateStageRequest$ = CreateStageRequest$;
|
|
4169
|
-
exports.CreateUsagePlan$ = CreateUsagePlan$;
|
|
4170
1980
|
exports.CreateUsagePlanCommand = CreateUsagePlanCommand;
|
|
4171
|
-
exports.CreateUsagePlanKey$ = CreateUsagePlanKey$;
|
|
4172
1981
|
exports.CreateUsagePlanKeyCommand = CreateUsagePlanKeyCommand;
|
|
4173
|
-
exports.CreateUsagePlanKeyRequest$ = CreateUsagePlanKeyRequest$;
|
|
4174
|
-
exports.CreateUsagePlanRequest$ = CreateUsagePlanRequest$;
|
|
4175
|
-
exports.CreateVpcLink$ = CreateVpcLink$;
|
|
4176
1982
|
exports.CreateVpcLinkCommand = CreateVpcLinkCommand;
|
|
4177
|
-
exports.CreateVpcLinkRequest$ = CreateVpcLinkRequest$;
|
|
4178
|
-
exports.DeleteApiKey$ = DeleteApiKey$;
|
|
4179
1983
|
exports.DeleteApiKeyCommand = DeleteApiKeyCommand;
|
|
4180
|
-
exports.DeleteApiKeyRequest$ = DeleteApiKeyRequest$;
|
|
4181
|
-
exports.DeleteAuthorizer$ = DeleteAuthorizer$;
|
|
4182
1984
|
exports.DeleteAuthorizerCommand = DeleteAuthorizerCommand;
|
|
4183
|
-
exports.DeleteAuthorizerRequest$ = DeleteAuthorizerRequest$;
|
|
4184
|
-
exports.DeleteBasePathMapping$ = DeleteBasePathMapping$;
|
|
4185
1985
|
exports.DeleteBasePathMappingCommand = DeleteBasePathMappingCommand;
|
|
4186
|
-
exports.DeleteBasePathMappingRequest$ = DeleteBasePathMappingRequest$;
|
|
4187
|
-
exports.DeleteClientCertificate$ = DeleteClientCertificate$;
|
|
4188
1986
|
exports.DeleteClientCertificateCommand = DeleteClientCertificateCommand;
|
|
4189
|
-
exports.DeleteClientCertificateRequest$ = DeleteClientCertificateRequest$;
|
|
4190
|
-
exports.DeleteDeployment$ = DeleteDeployment$;
|
|
4191
1987
|
exports.DeleteDeploymentCommand = DeleteDeploymentCommand;
|
|
4192
|
-
exports.DeleteDeploymentRequest$ = DeleteDeploymentRequest$;
|
|
4193
|
-
exports.DeleteDocumentationPart$ = DeleteDocumentationPart$;
|
|
4194
1988
|
exports.DeleteDocumentationPartCommand = DeleteDocumentationPartCommand;
|
|
4195
|
-
exports.DeleteDocumentationPartRequest$ = DeleteDocumentationPartRequest$;
|
|
4196
|
-
exports.DeleteDocumentationVersion$ = DeleteDocumentationVersion$;
|
|
4197
1989
|
exports.DeleteDocumentationVersionCommand = DeleteDocumentationVersionCommand;
|
|
4198
|
-
exports.DeleteDocumentationVersionRequest$ = DeleteDocumentationVersionRequest$;
|
|
4199
|
-
exports.DeleteDomainName$ = DeleteDomainName$;
|
|
4200
|
-
exports.DeleteDomainNameAccessAssociation$ = DeleteDomainNameAccessAssociation$;
|
|
4201
1990
|
exports.DeleteDomainNameAccessAssociationCommand = DeleteDomainNameAccessAssociationCommand;
|
|
4202
|
-
exports.DeleteDomainNameAccessAssociationRequest$ = DeleteDomainNameAccessAssociationRequest$;
|
|
4203
1991
|
exports.DeleteDomainNameCommand = DeleteDomainNameCommand;
|
|
4204
|
-
exports.DeleteDomainNameRequest$ = DeleteDomainNameRequest$;
|
|
4205
|
-
exports.DeleteGatewayResponse$ = DeleteGatewayResponse$;
|
|
4206
1992
|
exports.DeleteGatewayResponseCommand = DeleteGatewayResponseCommand;
|
|
4207
|
-
exports.DeleteGatewayResponseRequest$ = DeleteGatewayResponseRequest$;
|
|
4208
|
-
exports.DeleteIntegration$ = DeleteIntegration$;
|
|
4209
1993
|
exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
|
|
4210
|
-
exports.DeleteIntegrationRequest$ = DeleteIntegrationRequest$;
|
|
4211
|
-
exports.DeleteIntegrationResponse$ = DeleteIntegrationResponse$;
|
|
4212
1994
|
exports.DeleteIntegrationResponseCommand = DeleteIntegrationResponseCommand;
|
|
4213
|
-
exports.DeleteIntegrationResponseRequest$ = DeleteIntegrationResponseRequest$;
|
|
4214
|
-
exports.DeleteMethod$ = DeleteMethod$;
|
|
4215
1995
|
exports.DeleteMethodCommand = DeleteMethodCommand;
|
|
4216
|
-
exports.DeleteMethodRequest$ = DeleteMethodRequest$;
|
|
4217
|
-
exports.DeleteMethodResponse$ = DeleteMethodResponse$;
|
|
4218
1996
|
exports.DeleteMethodResponseCommand = DeleteMethodResponseCommand;
|
|
4219
|
-
exports.DeleteMethodResponseRequest$ = DeleteMethodResponseRequest$;
|
|
4220
|
-
exports.DeleteModel$ = DeleteModel$;
|
|
4221
1997
|
exports.DeleteModelCommand = DeleteModelCommand;
|
|
4222
|
-
exports.DeleteModelRequest$ = DeleteModelRequest$;
|
|
4223
|
-
exports.DeleteRequestValidator$ = DeleteRequestValidator$;
|
|
4224
1998
|
exports.DeleteRequestValidatorCommand = DeleteRequestValidatorCommand;
|
|
4225
|
-
exports.DeleteRequestValidatorRequest$ = DeleteRequestValidatorRequest$;
|
|
4226
|
-
exports.DeleteResource$ = DeleteResource$;
|
|
4227
1999
|
exports.DeleteResourceCommand = DeleteResourceCommand;
|
|
4228
|
-
exports.DeleteResourceRequest$ = DeleteResourceRequest$;
|
|
4229
|
-
exports.DeleteRestApi$ = DeleteRestApi$;
|
|
4230
2000
|
exports.DeleteRestApiCommand = DeleteRestApiCommand;
|
|
4231
|
-
exports.DeleteRestApiRequest$ = DeleteRestApiRequest$;
|
|
4232
|
-
exports.DeleteStage$ = DeleteStage$;
|
|
4233
2001
|
exports.DeleteStageCommand = DeleteStageCommand;
|
|
4234
|
-
exports.DeleteStageRequest$ = DeleteStageRequest$;
|
|
4235
|
-
exports.DeleteUsagePlan$ = DeleteUsagePlan$;
|
|
4236
2002
|
exports.DeleteUsagePlanCommand = DeleteUsagePlanCommand;
|
|
4237
|
-
exports.DeleteUsagePlanKey$ = DeleteUsagePlanKey$;
|
|
4238
2003
|
exports.DeleteUsagePlanKeyCommand = DeleteUsagePlanKeyCommand;
|
|
4239
|
-
exports.DeleteUsagePlanKeyRequest$ = DeleteUsagePlanKeyRequest$;
|
|
4240
|
-
exports.DeleteUsagePlanRequest$ = DeleteUsagePlanRequest$;
|
|
4241
|
-
exports.DeleteVpcLink$ = DeleteVpcLink$;
|
|
4242
2004
|
exports.DeleteVpcLinkCommand = DeleteVpcLinkCommand;
|
|
4243
|
-
exports.DeleteVpcLinkRequest$ = DeleteVpcLinkRequest$;
|
|
4244
|
-
exports.Deployment$ = Deployment$;
|
|
4245
|
-
exports.DeploymentCanarySettings$ = DeploymentCanarySettings$;
|
|
4246
|
-
exports.Deployments$ = Deployments$;
|
|
4247
|
-
exports.DocumentationPart$ = DocumentationPart$;
|
|
4248
|
-
exports.DocumentationPartIds$ = DocumentationPartIds$;
|
|
4249
|
-
exports.DocumentationPartLocation$ = DocumentationPartLocation$;
|
|
4250
2005
|
exports.DocumentationPartType = DocumentationPartType;
|
|
4251
|
-
exports.DocumentationParts$ = DocumentationParts$;
|
|
4252
|
-
exports.DocumentationVersion$ = DocumentationVersion$;
|
|
4253
|
-
exports.DocumentationVersions$ = DocumentationVersions$;
|
|
4254
|
-
exports.DomainName$ = DomainName$;
|
|
4255
|
-
exports.DomainNameAccessAssociation$ = DomainNameAccessAssociation$;
|
|
4256
|
-
exports.DomainNameAccessAssociations$ = DomainNameAccessAssociations$;
|
|
4257
2006
|
exports.DomainNameStatus = DomainNameStatus;
|
|
4258
|
-
exports.DomainNames$ = DomainNames$;
|
|
4259
2007
|
exports.EndpointAccessMode = EndpointAccessMode;
|
|
4260
|
-
exports.EndpointConfiguration$ = EndpointConfiguration$;
|
|
4261
2008
|
exports.EndpointType = EndpointType;
|
|
4262
|
-
exports.ExportResponse$ = ExportResponse$;
|
|
4263
|
-
exports.FlushStageAuthorizersCache$ = FlushStageAuthorizersCache$;
|
|
4264
2009
|
exports.FlushStageAuthorizersCacheCommand = FlushStageAuthorizersCacheCommand;
|
|
4265
|
-
exports.FlushStageAuthorizersCacheRequest$ = FlushStageAuthorizersCacheRequest$;
|
|
4266
|
-
exports.FlushStageCache$ = FlushStageCache$;
|
|
4267
2010
|
exports.FlushStageCacheCommand = FlushStageCacheCommand;
|
|
4268
|
-
exports.FlushStageCacheRequest$ = FlushStageCacheRequest$;
|
|
4269
|
-
exports.GatewayResponse$ = GatewayResponse$;
|
|
4270
2011
|
exports.GatewayResponseType = GatewayResponseType;
|
|
4271
|
-
exports.GatewayResponses$ = GatewayResponses$;
|
|
4272
|
-
exports.GenerateClientCertificate$ = GenerateClientCertificate$;
|
|
4273
2012
|
exports.GenerateClientCertificateCommand = GenerateClientCertificateCommand;
|
|
4274
|
-
exports.GenerateClientCertificateRequest$ = GenerateClientCertificateRequest$;
|
|
4275
|
-
exports.GetAccount$ = GetAccount$;
|
|
4276
2013
|
exports.GetAccountCommand = GetAccountCommand;
|
|
4277
|
-
exports.GetAccountRequest$ = GetAccountRequest$;
|
|
4278
|
-
exports.GetApiKey$ = GetApiKey$;
|
|
4279
2014
|
exports.GetApiKeyCommand = GetApiKeyCommand;
|
|
4280
|
-
exports.GetApiKeyRequest$ = GetApiKeyRequest$;
|
|
4281
|
-
exports.GetApiKeys$ = GetApiKeys$;
|
|
4282
2015
|
exports.GetApiKeysCommand = GetApiKeysCommand;
|
|
4283
|
-
exports.GetApiKeysRequest$ = GetApiKeysRequest$;
|
|
4284
|
-
exports.GetAuthorizer$ = GetAuthorizer$;
|
|
4285
2016
|
exports.GetAuthorizerCommand = GetAuthorizerCommand;
|
|
4286
|
-
exports.GetAuthorizerRequest$ = GetAuthorizerRequest$;
|
|
4287
|
-
exports.GetAuthorizers$ = GetAuthorizers$;
|
|
4288
2017
|
exports.GetAuthorizersCommand = GetAuthorizersCommand;
|
|
4289
|
-
exports.GetAuthorizersRequest$ = GetAuthorizersRequest$;
|
|
4290
|
-
exports.GetBasePathMapping$ = GetBasePathMapping$;
|
|
4291
2018
|
exports.GetBasePathMappingCommand = GetBasePathMappingCommand;
|
|
4292
|
-
exports.GetBasePathMappingRequest$ = GetBasePathMappingRequest$;
|
|
4293
|
-
exports.GetBasePathMappings$ = GetBasePathMappings$;
|
|
4294
2019
|
exports.GetBasePathMappingsCommand = GetBasePathMappingsCommand;
|
|
4295
|
-
exports.GetBasePathMappingsRequest$ = GetBasePathMappingsRequest$;
|
|
4296
|
-
exports.GetClientCertificate$ = GetClientCertificate$;
|
|
4297
2020
|
exports.GetClientCertificateCommand = GetClientCertificateCommand;
|
|
4298
|
-
exports.GetClientCertificateRequest$ = GetClientCertificateRequest$;
|
|
4299
|
-
exports.GetClientCertificates$ = GetClientCertificates$;
|
|
4300
2021
|
exports.GetClientCertificatesCommand = GetClientCertificatesCommand;
|
|
4301
|
-
exports.GetClientCertificatesRequest$ = GetClientCertificatesRequest$;
|
|
4302
|
-
exports.GetDeployment$ = GetDeployment$;
|
|
4303
2022
|
exports.GetDeploymentCommand = GetDeploymentCommand;
|
|
4304
|
-
exports.GetDeploymentRequest$ = GetDeploymentRequest$;
|
|
4305
|
-
exports.GetDeployments$ = GetDeployments$;
|
|
4306
2023
|
exports.GetDeploymentsCommand = GetDeploymentsCommand;
|
|
4307
|
-
exports.GetDeploymentsRequest$ = GetDeploymentsRequest$;
|
|
4308
|
-
exports.GetDocumentationPart$ = GetDocumentationPart$;
|
|
4309
2024
|
exports.GetDocumentationPartCommand = GetDocumentationPartCommand;
|
|
4310
|
-
exports.GetDocumentationPartRequest$ = GetDocumentationPartRequest$;
|
|
4311
|
-
exports.GetDocumentationParts$ = GetDocumentationParts$;
|
|
4312
2025
|
exports.GetDocumentationPartsCommand = GetDocumentationPartsCommand;
|
|
4313
|
-
exports.GetDocumentationPartsRequest$ = GetDocumentationPartsRequest$;
|
|
4314
|
-
exports.GetDocumentationVersion$ = GetDocumentationVersion$;
|
|
4315
2026
|
exports.GetDocumentationVersionCommand = GetDocumentationVersionCommand;
|
|
4316
|
-
exports.GetDocumentationVersionRequest$ = GetDocumentationVersionRequest$;
|
|
4317
|
-
exports.GetDocumentationVersions$ = GetDocumentationVersions$;
|
|
4318
2027
|
exports.GetDocumentationVersionsCommand = GetDocumentationVersionsCommand;
|
|
4319
|
-
exports.GetDocumentationVersionsRequest$ = GetDocumentationVersionsRequest$;
|
|
4320
|
-
exports.GetDomainName$ = GetDomainName$;
|
|
4321
|
-
exports.GetDomainNameAccessAssociations$ = GetDomainNameAccessAssociations$;
|
|
4322
2028
|
exports.GetDomainNameAccessAssociationsCommand = GetDomainNameAccessAssociationsCommand;
|
|
4323
|
-
exports.GetDomainNameAccessAssociationsRequest$ = GetDomainNameAccessAssociationsRequest$;
|
|
4324
2029
|
exports.GetDomainNameCommand = GetDomainNameCommand;
|
|
4325
|
-
exports.GetDomainNameRequest$ = GetDomainNameRequest$;
|
|
4326
|
-
exports.GetDomainNames$ = GetDomainNames$;
|
|
4327
2030
|
exports.GetDomainNamesCommand = GetDomainNamesCommand;
|
|
4328
|
-
exports.GetDomainNamesRequest$ = GetDomainNamesRequest$;
|
|
4329
|
-
exports.GetExport$ = GetExport$;
|
|
4330
2031
|
exports.GetExportCommand = GetExportCommand;
|
|
4331
|
-
exports.GetExportRequest$ = GetExportRequest$;
|
|
4332
|
-
exports.GetGatewayResponse$ = GetGatewayResponse$;
|
|
4333
2032
|
exports.GetGatewayResponseCommand = GetGatewayResponseCommand;
|
|
4334
|
-
exports.GetGatewayResponseRequest$ = GetGatewayResponseRequest$;
|
|
4335
|
-
exports.GetGatewayResponses$ = GetGatewayResponses$;
|
|
4336
2033
|
exports.GetGatewayResponsesCommand = GetGatewayResponsesCommand;
|
|
4337
|
-
exports.GetGatewayResponsesRequest$ = GetGatewayResponsesRequest$;
|
|
4338
|
-
exports.GetIntegration$ = GetIntegration$;
|
|
4339
2034
|
exports.GetIntegrationCommand = GetIntegrationCommand;
|
|
4340
|
-
exports.GetIntegrationRequest$ = GetIntegrationRequest$;
|
|
4341
|
-
exports.GetIntegrationResponse$ = GetIntegrationResponse$;
|
|
4342
2035
|
exports.GetIntegrationResponseCommand = GetIntegrationResponseCommand;
|
|
4343
|
-
exports.GetIntegrationResponseRequest$ = GetIntegrationResponseRequest$;
|
|
4344
|
-
exports.GetMethod$ = GetMethod$;
|
|
4345
2036
|
exports.GetMethodCommand = GetMethodCommand;
|
|
4346
|
-
exports.GetMethodRequest$ = GetMethodRequest$;
|
|
4347
|
-
exports.GetMethodResponse$ = GetMethodResponse$;
|
|
4348
2037
|
exports.GetMethodResponseCommand = GetMethodResponseCommand;
|
|
4349
|
-
exports.GetMethodResponseRequest$ = GetMethodResponseRequest$;
|
|
4350
|
-
exports.GetModel$ = GetModel$;
|
|
4351
2038
|
exports.GetModelCommand = GetModelCommand;
|
|
4352
|
-
exports.GetModelRequest$ = GetModelRequest$;
|
|
4353
|
-
exports.GetModelTemplate$ = GetModelTemplate$;
|
|
4354
2039
|
exports.GetModelTemplateCommand = GetModelTemplateCommand;
|
|
4355
|
-
exports.GetModelTemplateRequest$ = GetModelTemplateRequest$;
|
|
4356
|
-
exports.GetModels$ = GetModels$;
|
|
4357
2040
|
exports.GetModelsCommand = GetModelsCommand;
|
|
4358
|
-
exports.GetModelsRequest$ = GetModelsRequest$;
|
|
4359
|
-
exports.GetRequestValidator$ = GetRequestValidator$;
|
|
4360
2041
|
exports.GetRequestValidatorCommand = GetRequestValidatorCommand;
|
|
4361
|
-
exports.GetRequestValidatorRequest$ = GetRequestValidatorRequest$;
|
|
4362
|
-
exports.GetRequestValidators$ = GetRequestValidators$;
|
|
4363
2042
|
exports.GetRequestValidatorsCommand = GetRequestValidatorsCommand;
|
|
4364
|
-
exports.GetRequestValidatorsRequest$ = GetRequestValidatorsRequest$;
|
|
4365
|
-
exports.GetResource$ = GetResource$;
|
|
4366
2043
|
exports.GetResourceCommand = GetResourceCommand;
|
|
4367
|
-
exports.GetResourceRequest$ = GetResourceRequest$;
|
|
4368
|
-
exports.GetResources$ = GetResources$;
|
|
4369
2044
|
exports.GetResourcesCommand = GetResourcesCommand;
|
|
4370
|
-
exports.GetResourcesRequest$ = GetResourcesRequest$;
|
|
4371
|
-
exports.GetRestApi$ = GetRestApi$;
|
|
4372
2045
|
exports.GetRestApiCommand = GetRestApiCommand;
|
|
4373
|
-
exports.GetRestApiRequest$ = GetRestApiRequest$;
|
|
4374
|
-
exports.GetRestApis$ = GetRestApis$;
|
|
4375
2046
|
exports.GetRestApisCommand = GetRestApisCommand;
|
|
4376
|
-
exports.GetRestApisRequest$ = GetRestApisRequest$;
|
|
4377
|
-
exports.GetSdk$ = GetSdk$;
|
|
4378
2047
|
exports.GetSdkCommand = GetSdkCommand;
|
|
4379
|
-
exports.GetSdkRequest$ = GetSdkRequest$;
|
|
4380
|
-
exports.GetSdkType$ = GetSdkType$;
|
|
4381
2048
|
exports.GetSdkTypeCommand = GetSdkTypeCommand;
|
|
4382
|
-
exports.GetSdkTypeRequest$ = GetSdkTypeRequest$;
|
|
4383
|
-
exports.GetSdkTypes$ = GetSdkTypes$;
|
|
4384
2049
|
exports.GetSdkTypesCommand = GetSdkTypesCommand;
|
|
4385
|
-
exports.GetSdkTypesRequest$ = GetSdkTypesRequest$;
|
|
4386
|
-
exports.GetStage$ = GetStage$;
|
|
4387
2050
|
exports.GetStageCommand = GetStageCommand;
|
|
4388
|
-
exports.GetStageRequest$ = GetStageRequest$;
|
|
4389
|
-
exports.GetStages$ = GetStages$;
|
|
4390
2051
|
exports.GetStagesCommand = GetStagesCommand;
|
|
4391
|
-
exports.GetStagesRequest$ = GetStagesRequest$;
|
|
4392
|
-
exports.GetTags$ = GetTags$;
|
|
4393
2052
|
exports.GetTagsCommand = GetTagsCommand;
|
|
4394
|
-
exports.GetTagsRequest$ = GetTagsRequest$;
|
|
4395
|
-
exports.GetUsage$ = GetUsage$;
|
|
4396
2053
|
exports.GetUsageCommand = GetUsageCommand;
|
|
4397
|
-
exports.GetUsagePlan$ = GetUsagePlan$;
|
|
4398
2054
|
exports.GetUsagePlanCommand = GetUsagePlanCommand;
|
|
4399
|
-
exports.GetUsagePlanKey$ = GetUsagePlanKey$;
|
|
4400
2055
|
exports.GetUsagePlanKeyCommand = GetUsagePlanKeyCommand;
|
|
4401
|
-
exports.GetUsagePlanKeyRequest$ = GetUsagePlanKeyRequest$;
|
|
4402
|
-
exports.GetUsagePlanKeys$ = GetUsagePlanKeys$;
|
|
4403
2056
|
exports.GetUsagePlanKeysCommand = GetUsagePlanKeysCommand;
|
|
4404
|
-
exports.GetUsagePlanKeysRequest$ = GetUsagePlanKeysRequest$;
|
|
4405
|
-
exports.GetUsagePlanRequest$ = GetUsagePlanRequest$;
|
|
4406
|
-
exports.GetUsagePlans$ = GetUsagePlans$;
|
|
4407
2057
|
exports.GetUsagePlansCommand = GetUsagePlansCommand;
|
|
4408
|
-
exports.GetUsagePlansRequest$ = GetUsagePlansRequest$;
|
|
4409
|
-
exports.GetUsageRequest$ = GetUsageRequest$;
|
|
4410
|
-
exports.GetVpcLink$ = GetVpcLink$;
|
|
4411
2058
|
exports.GetVpcLinkCommand = GetVpcLinkCommand;
|
|
4412
|
-
exports.GetVpcLinkRequest$ = GetVpcLinkRequest$;
|
|
4413
|
-
exports.GetVpcLinks$ = GetVpcLinks$;
|
|
4414
2059
|
exports.GetVpcLinksCommand = GetVpcLinksCommand;
|
|
4415
|
-
exports.GetVpcLinksRequest$ = GetVpcLinksRequest$;
|
|
4416
|
-
exports.ImportApiKeys$ = ImportApiKeys$;
|
|
4417
2060
|
exports.ImportApiKeysCommand = ImportApiKeysCommand;
|
|
4418
|
-
exports.ImportApiKeysRequest$ = ImportApiKeysRequest$;
|
|
4419
|
-
exports.ImportDocumentationParts$ = ImportDocumentationParts$;
|
|
4420
2061
|
exports.ImportDocumentationPartsCommand = ImportDocumentationPartsCommand;
|
|
4421
|
-
exports.ImportDocumentationPartsRequest$ = ImportDocumentationPartsRequest$;
|
|
4422
|
-
exports.ImportRestApi$ = ImportRestApi$;
|
|
4423
2062
|
exports.ImportRestApiCommand = ImportRestApiCommand;
|
|
4424
|
-
exports.ImportRestApiRequest$ = ImportRestApiRequest$;
|
|
4425
|
-
exports.Integration$ = Integration$;
|
|
4426
|
-
exports.IntegrationResponse$ = IntegrationResponse$;
|
|
4427
2063
|
exports.IntegrationType = IntegrationType;
|
|
4428
2064
|
exports.IpAddressType = IpAddressType;
|
|
4429
|
-
exports.LimitExceededException = LimitExceededException;
|
|
4430
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
4431
2065
|
exports.LocationStatusType = LocationStatusType;
|
|
4432
|
-
exports.Method$ = Method$;
|
|
4433
|
-
exports.MethodResponse$ = MethodResponse$;
|
|
4434
|
-
exports.MethodSetting$ = MethodSetting$;
|
|
4435
|
-
exports.MethodSnapshot$ = MethodSnapshot$;
|
|
4436
|
-
exports.Model$ = Model$;
|
|
4437
|
-
exports.Models$ = Models$;
|
|
4438
|
-
exports.MutualTlsAuthentication$ = MutualTlsAuthentication$;
|
|
4439
|
-
exports.MutualTlsAuthenticationInput$ = MutualTlsAuthenticationInput$;
|
|
4440
|
-
exports.NotFoundException = NotFoundException;
|
|
4441
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
4442
2066
|
exports.Op = Op;
|
|
4443
|
-
exports.PatchOperation$ = PatchOperation$;
|
|
4444
|
-
exports.PutGatewayResponse$ = PutGatewayResponse$;
|
|
4445
2067
|
exports.PutGatewayResponseCommand = PutGatewayResponseCommand;
|
|
4446
|
-
exports.PutGatewayResponseRequest$ = PutGatewayResponseRequest$;
|
|
4447
|
-
exports.PutIntegration$ = PutIntegration$;
|
|
4448
2068
|
exports.PutIntegrationCommand = PutIntegrationCommand;
|
|
4449
|
-
exports.PutIntegrationRequest$ = PutIntegrationRequest$;
|
|
4450
|
-
exports.PutIntegrationResponse$ = PutIntegrationResponse$;
|
|
4451
2069
|
exports.PutIntegrationResponseCommand = PutIntegrationResponseCommand;
|
|
4452
|
-
exports.PutIntegrationResponseRequest$ = PutIntegrationResponseRequest$;
|
|
4453
|
-
exports.PutMethod$ = PutMethod$;
|
|
4454
2070
|
exports.PutMethodCommand = PutMethodCommand;
|
|
4455
|
-
exports.PutMethodRequest$ = PutMethodRequest$;
|
|
4456
|
-
exports.PutMethodResponse$ = PutMethodResponse$;
|
|
4457
2071
|
exports.PutMethodResponseCommand = PutMethodResponseCommand;
|
|
4458
|
-
exports.PutMethodResponseRequest$ = PutMethodResponseRequest$;
|
|
4459
2072
|
exports.PutMode = PutMode;
|
|
4460
|
-
exports.PutRestApi$ = PutRestApi$;
|
|
4461
2073
|
exports.PutRestApiCommand = PutRestApiCommand;
|
|
4462
|
-
exports.PutRestApiRequest$ = PutRestApiRequest$;
|
|
4463
2074
|
exports.QuotaPeriodType = QuotaPeriodType;
|
|
4464
|
-
exports.QuotaSettings$ = QuotaSettings$;
|
|
4465
|
-
exports.RejectDomainNameAccessAssociation$ = RejectDomainNameAccessAssociation$;
|
|
4466
2075
|
exports.RejectDomainNameAccessAssociationCommand = RejectDomainNameAccessAssociationCommand;
|
|
4467
|
-
exports.RejectDomainNameAccessAssociationRequest$ = RejectDomainNameAccessAssociationRequest$;
|
|
4468
|
-
exports.RequestValidator$ = RequestValidator$;
|
|
4469
|
-
exports.RequestValidators$ = RequestValidators$;
|
|
4470
|
-
exports.Resource$ = Resource$;
|
|
4471
2076
|
exports.ResourceOwner = ResourceOwner;
|
|
4472
|
-
exports.Resources$ = Resources$;
|
|
4473
2077
|
exports.ResponseTransferMode = ResponseTransferMode;
|
|
4474
|
-
exports.RestApi$ = RestApi$;
|
|
4475
|
-
exports.RestApis$ = RestApis$;
|
|
4476
2078
|
exports.RoutingMode = RoutingMode;
|
|
4477
|
-
exports.SdkConfigurationProperty$ = SdkConfigurationProperty$;
|
|
4478
|
-
exports.SdkResponse$ = SdkResponse$;
|
|
4479
|
-
exports.SdkType$ = SdkType$;
|
|
4480
|
-
exports.SdkTypes$ = SdkTypes$;
|
|
4481
2079
|
exports.SecurityPolicy = SecurityPolicy;
|
|
4482
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4483
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4484
|
-
exports.Stage$ = Stage$;
|
|
4485
|
-
exports.StageKey$ = StageKey$;
|
|
4486
|
-
exports.Stages$ = Stages$;
|
|
4487
|
-
exports.TagResource$ = TagResource$;
|
|
4488
2080
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4489
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4490
|
-
exports.Tags$ = Tags$;
|
|
4491
|
-
exports.Template$ = Template$;
|
|
4492
|
-
exports.TestInvokeAuthorizer$ = TestInvokeAuthorizer$;
|
|
4493
2081
|
exports.TestInvokeAuthorizerCommand = TestInvokeAuthorizerCommand;
|
|
4494
|
-
exports.TestInvokeAuthorizerRequest$ = TestInvokeAuthorizerRequest$;
|
|
4495
|
-
exports.TestInvokeAuthorizerResponse$ = TestInvokeAuthorizerResponse$;
|
|
4496
|
-
exports.TestInvokeMethod$ = TestInvokeMethod$;
|
|
4497
2082
|
exports.TestInvokeMethodCommand = TestInvokeMethodCommand;
|
|
4498
|
-
exports.TestInvokeMethodRequest$ = TestInvokeMethodRequest$;
|
|
4499
|
-
exports.TestInvokeMethodResponse$ = TestInvokeMethodResponse$;
|
|
4500
|
-
exports.ThrottleSettings$ = ThrottleSettings$;
|
|
4501
|
-
exports.TlsConfig$ = TlsConfig$;
|
|
4502
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
4503
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
4504
2083
|
exports.UnauthorizedCacheControlHeaderStrategy = UnauthorizedCacheControlHeaderStrategy;
|
|
4505
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
4506
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
4507
|
-
exports.UntagResource$ = UntagResource$;
|
|
4508
2084
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4509
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4510
|
-
exports.UpdateAccount$ = UpdateAccount$;
|
|
4511
2085
|
exports.UpdateAccountCommand = UpdateAccountCommand;
|
|
4512
|
-
exports.UpdateAccountRequest$ = UpdateAccountRequest$;
|
|
4513
|
-
exports.UpdateApiKey$ = UpdateApiKey$;
|
|
4514
2086
|
exports.UpdateApiKeyCommand = UpdateApiKeyCommand;
|
|
4515
|
-
exports.UpdateApiKeyRequest$ = UpdateApiKeyRequest$;
|
|
4516
|
-
exports.UpdateAuthorizer$ = UpdateAuthorizer$;
|
|
4517
2087
|
exports.UpdateAuthorizerCommand = UpdateAuthorizerCommand;
|
|
4518
|
-
exports.UpdateAuthorizerRequest$ = UpdateAuthorizerRequest$;
|
|
4519
|
-
exports.UpdateBasePathMapping$ = UpdateBasePathMapping$;
|
|
4520
2088
|
exports.UpdateBasePathMappingCommand = UpdateBasePathMappingCommand;
|
|
4521
|
-
exports.UpdateBasePathMappingRequest$ = UpdateBasePathMappingRequest$;
|
|
4522
|
-
exports.UpdateClientCertificate$ = UpdateClientCertificate$;
|
|
4523
2089
|
exports.UpdateClientCertificateCommand = UpdateClientCertificateCommand;
|
|
4524
|
-
exports.UpdateClientCertificateRequest$ = UpdateClientCertificateRequest$;
|
|
4525
|
-
exports.UpdateDeployment$ = UpdateDeployment$;
|
|
4526
2090
|
exports.UpdateDeploymentCommand = UpdateDeploymentCommand;
|
|
4527
|
-
exports.UpdateDeploymentRequest$ = UpdateDeploymentRequest$;
|
|
4528
|
-
exports.UpdateDocumentationPart$ = UpdateDocumentationPart$;
|
|
4529
2091
|
exports.UpdateDocumentationPartCommand = UpdateDocumentationPartCommand;
|
|
4530
|
-
exports.UpdateDocumentationPartRequest$ = UpdateDocumentationPartRequest$;
|
|
4531
|
-
exports.UpdateDocumentationVersion$ = UpdateDocumentationVersion$;
|
|
4532
2092
|
exports.UpdateDocumentationVersionCommand = UpdateDocumentationVersionCommand;
|
|
4533
|
-
exports.UpdateDocumentationVersionRequest$ = UpdateDocumentationVersionRequest$;
|
|
4534
|
-
exports.UpdateDomainName$ = UpdateDomainName$;
|
|
4535
2093
|
exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
|
|
4536
|
-
exports.UpdateDomainNameRequest$ = UpdateDomainNameRequest$;
|
|
4537
|
-
exports.UpdateGatewayResponse$ = UpdateGatewayResponse$;
|
|
4538
2094
|
exports.UpdateGatewayResponseCommand = UpdateGatewayResponseCommand;
|
|
4539
|
-
exports.UpdateGatewayResponseRequest$ = UpdateGatewayResponseRequest$;
|
|
4540
|
-
exports.UpdateIntegration$ = UpdateIntegration$;
|
|
4541
2095
|
exports.UpdateIntegrationCommand = UpdateIntegrationCommand;
|
|
4542
|
-
exports.UpdateIntegrationRequest$ = UpdateIntegrationRequest$;
|
|
4543
|
-
exports.UpdateIntegrationResponse$ = UpdateIntegrationResponse$;
|
|
4544
2096
|
exports.UpdateIntegrationResponseCommand = UpdateIntegrationResponseCommand;
|
|
4545
|
-
exports.UpdateIntegrationResponseRequest$ = UpdateIntegrationResponseRequest$;
|
|
4546
|
-
exports.UpdateMethod$ = UpdateMethod$;
|
|
4547
2097
|
exports.UpdateMethodCommand = UpdateMethodCommand;
|
|
4548
|
-
exports.UpdateMethodRequest$ = UpdateMethodRequest$;
|
|
4549
|
-
exports.UpdateMethodResponse$ = UpdateMethodResponse$;
|
|
4550
2098
|
exports.UpdateMethodResponseCommand = UpdateMethodResponseCommand;
|
|
4551
|
-
exports.UpdateMethodResponseRequest$ = UpdateMethodResponseRequest$;
|
|
4552
|
-
exports.UpdateModel$ = UpdateModel$;
|
|
4553
2099
|
exports.UpdateModelCommand = UpdateModelCommand;
|
|
4554
|
-
exports.UpdateModelRequest$ = UpdateModelRequest$;
|
|
4555
|
-
exports.UpdateRequestValidator$ = UpdateRequestValidator$;
|
|
4556
2100
|
exports.UpdateRequestValidatorCommand = UpdateRequestValidatorCommand;
|
|
4557
|
-
exports.UpdateRequestValidatorRequest$ = UpdateRequestValidatorRequest$;
|
|
4558
|
-
exports.UpdateResource$ = UpdateResource$;
|
|
4559
2101
|
exports.UpdateResourceCommand = UpdateResourceCommand;
|
|
4560
|
-
exports.UpdateResourceRequest$ = UpdateResourceRequest$;
|
|
4561
|
-
exports.UpdateRestApi$ = UpdateRestApi$;
|
|
4562
2102
|
exports.UpdateRestApiCommand = UpdateRestApiCommand;
|
|
4563
|
-
exports.UpdateRestApiRequest$ = UpdateRestApiRequest$;
|
|
4564
|
-
exports.UpdateStage$ = UpdateStage$;
|
|
4565
2103
|
exports.UpdateStageCommand = UpdateStageCommand;
|
|
4566
|
-
exports.UpdateStageRequest$ = UpdateStageRequest$;
|
|
4567
|
-
exports.UpdateUsage$ = UpdateUsage$;
|
|
4568
2104
|
exports.UpdateUsageCommand = UpdateUsageCommand;
|
|
4569
|
-
exports.UpdateUsagePlan$ = UpdateUsagePlan$;
|
|
4570
2105
|
exports.UpdateUsagePlanCommand = UpdateUsagePlanCommand;
|
|
4571
|
-
exports.UpdateUsagePlanRequest$ = UpdateUsagePlanRequest$;
|
|
4572
|
-
exports.UpdateUsageRequest$ = UpdateUsageRequest$;
|
|
4573
|
-
exports.UpdateVpcLink$ = UpdateVpcLink$;
|
|
4574
2106
|
exports.UpdateVpcLinkCommand = UpdateVpcLinkCommand;
|
|
4575
|
-
exports.UpdateVpcLinkRequest$ = UpdateVpcLinkRequest$;
|
|
4576
|
-
exports.Usage$ = Usage$;
|
|
4577
|
-
exports.UsagePlan$ = UsagePlan$;
|
|
4578
|
-
exports.UsagePlanKey$ = UsagePlanKey$;
|
|
4579
|
-
exports.UsagePlanKeys$ = UsagePlanKeys$;
|
|
4580
|
-
exports.UsagePlans$ = UsagePlans$;
|
|
4581
|
-
exports.VpcLink$ = VpcLink$;
|
|
4582
2107
|
exports.VpcLinkStatus = VpcLinkStatus;
|
|
4583
|
-
exports.VpcLinks$ = VpcLinks$;
|
|
4584
2108
|
exports.paginateGetApiKeys = paginateGetApiKeys;
|
|
4585
2109
|
exports.paginateGetBasePathMappings = paginateGetBasePathMappings;
|
|
4586
2110
|
exports.paginateGetClientCertificates = paginateGetClientCertificates;
|
|
@@ -4593,3 +2117,15 @@ exports.paginateGetUsage = paginateGetUsage;
|
|
|
4593
2117
|
exports.paginateGetUsagePlanKeys = paginateGetUsagePlanKeys;
|
|
4594
2118
|
exports.paginateGetUsagePlans = paginateGetUsagePlans;
|
|
4595
2119
|
exports.paginateGetVpcLinks = paginateGetVpcLinks;
|
|
2120
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
2121
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2122
|
+
enumerable: true,
|
|
2123
|
+
get: function () { return schemas_0[k]; }
|
|
2124
|
+
});
|
|
2125
|
+
});
|
|
2126
|
+
Object.keys(errors).forEach(function (k) {
|
|
2127
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2128
|
+
enumerable: true,
|
|
2129
|
+
get: function () { return errors[k]; }
|
|
2130
|
+
});
|
|
2131
|
+
});
|