@aws-sdk/client-vpc-lattice 3.987.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 +92 -2184
- package/dist-cjs/models/VPCLatticeServiceException.js +12 -0
- package/dist-cjs/models/errors.js +127 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1733 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var VPCLatticeServiceException = require('./models/VPCLatticeServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1840 +113,6 @@ class VPCLatticeClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class VPCLatticeServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, VPCLatticeServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends VPCLatticeServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends VPCLatticeServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends VPCLatticeServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
retryAfterSeconds;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ResourceNotFoundException extends VPCLatticeServiceException {
|
|
164
|
-
name = "ResourceNotFoundException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
resourceId;
|
|
167
|
-
resourceType;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "ResourceNotFoundException",
|
|
171
|
-
$fault: "client",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
|
-
this.resourceId = opts.resourceId;
|
|
176
|
-
this.resourceType = opts.resourceType;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
class ThrottlingException extends VPCLatticeServiceException {
|
|
180
|
-
name = "ThrottlingException";
|
|
181
|
-
$fault = "client";
|
|
182
|
-
$retryable = {
|
|
183
|
-
throttling: true,
|
|
184
|
-
};
|
|
185
|
-
serviceCode;
|
|
186
|
-
quotaCode;
|
|
187
|
-
retryAfterSeconds;
|
|
188
|
-
constructor(opts) {
|
|
189
|
-
super({
|
|
190
|
-
name: "ThrottlingException",
|
|
191
|
-
$fault: "client",
|
|
192
|
-
...opts,
|
|
193
|
-
});
|
|
194
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
195
|
-
this.serviceCode = opts.serviceCode;
|
|
196
|
-
this.quotaCode = opts.quotaCode;
|
|
197
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
class ValidationException extends VPCLatticeServiceException {
|
|
201
|
-
name = "ValidationException";
|
|
202
|
-
$fault = "client";
|
|
203
|
-
reason;
|
|
204
|
-
fieldList;
|
|
205
|
-
constructor(opts) {
|
|
206
|
-
super({
|
|
207
|
-
name: "ValidationException",
|
|
208
|
-
$fault: "client",
|
|
209
|
-
...opts,
|
|
210
|
-
});
|
|
211
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
212
|
-
this.reason = opts.reason;
|
|
213
|
-
this.fieldList = opts.fieldList;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ServiceQuotaExceededException extends VPCLatticeServiceException {
|
|
217
|
-
name = "ServiceQuotaExceededException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
resourceId;
|
|
220
|
-
resourceType;
|
|
221
|
-
serviceCode;
|
|
222
|
-
quotaCode;
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "ServiceQuotaExceededException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
230
|
-
this.resourceId = opts.resourceId;
|
|
231
|
-
this.resourceType = opts.resourceType;
|
|
232
|
-
this.serviceCode = opts.serviceCode;
|
|
233
|
-
this.quotaCode = opts.quotaCode;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
const _ADE = "AccessDeniedException";
|
|
238
|
-
const _ALSL = "AccessLogSubscriptionList";
|
|
239
|
-
const _ALSS = "AccessLogSubscriptionSummary";
|
|
240
|
-
const _AR = "ArnResource";
|
|
241
|
-
const _BUR = "BatchUpdateRule";
|
|
242
|
-
const _BURR = "BatchUpdateRuleRequest";
|
|
243
|
-
const _BURRa = "BatchUpdateRuleResponse";
|
|
244
|
-
const _CALS = "CreateAccessLogSubscription";
|
|
245
|
-
const _CALSR = "CreateAccessLogSubscriptionRequest";
|
|
246
|
-
const _CALSRr = "CreateAccessLogSubscriptionResponse";
|
|
247
|
-
const _CE = "ConflictException";
|
|
248
|
-
const _CL = "CreateListener";
|
|
249
|
-
const _CLR = "CreateListenerRequest";
|
|
250
|
-
const _CLRr = "CreateListenerResponse";
|
|
251
|
-
const _CR = "CreateRule";
|
|
252
|
-
const _CRC = "CreateResourceConfiguration";
|
|
253
|
-
const _CRCR = "CreateResourceConfigurationRequest";
|
|
254
|
-
const _CRCRr = "CreateResourceConfigurationResponse";
|
|
255
|
-
const _CRG = "CreateResourceGateway";
|
|
256
|
-
const _CRGR = "CreateResourceGatewayRequest";
|
|
257
|
-
const _CRGRr = "CreateResourceGatewayResponse";
|
|
258
|
-
const _CRR = "CreateRuleRequest";
|
|
259
|
-
const _CRRr = "CreateRuleResponse";
|
|
260
|
-
const _CS = "CreateService";
|
|
261
|
-
const _CSN = "CreateServiceNetwork";
|
|
262
|
-
const _CSNR = "CreateServiceNetworkRequest";
|
|
263
|
-
const _CSNRA = "CreateServiceNetworkResourceAssociation";
|
|
264
|
-
const _CSNRAR = "CreateServiceNetworkResourceAssociationRequest";
|
|
265
|
-
const _CSNRARr = "CreateServiceNetworkResourceAssociationResponse";
|
|
266
|
-
const _CSNRr = "CreateServiceNetworkResponse";
|
|
267
|
-
const _CSNSA = "CreateServiceNetworkServiceAssociation";
|
|
268
|
-
const _CSNSAR = "CreateServiceNetworkServiceAssociationRequest";
|
|
269
|
-
const _CSNSARr = "CreateServiceNetworkServiceAssociationResponse";
|
|
270
|
-
const _CSNVA = "CreateServiceNetworkVpcAssociation";
|
|
271
|
-
const _CSNVAR = "CreateServiceNetworkVpcAssociationRequest";
|
|
272
|
-
const _CSNVARr = "CreateServiceNetworkVpcAssociationResponse";
|
|
273
|
-
const _CSR = "CreateServiceRequest";
|
|
274
|
-
const _CSRr = "CreateServiceResponse";
|
|
275
|
-
const _CTG = "CreateTargetGroup";
|
|
276
|
-
const _CTGR = "CreateTargetGroupRequest";
|
|
277
|
-
const _CTGRr = "CreateTargetGroupResponse";
|
|
278
|
-
const _DALS = "DeleteAccessLogSubscription";
|
|
279
|
-
const _DALSR = "DeleteAccessLogSubscriptionRequest";
|
|
280
|
-
const _DALSRe = "DeleteAccessLogSubscriptionResponse";
|
|
281
|
-
const _DAP = "DeleteAuthPolicy";
|
|
282
|
-
const _DAPR = "DeleteAuthPolicyRequest";
|
|
283
|
-
const _DAPRe = "DeleteAuthPolicyResponse";
|
|
284
|
-
const _DDV = "DeleteDomainVerification";
|
|
285
|
-
const _DDVR = "DeleteDomainVerificationRequest";
|
|
286
|
-
const _DDVRe = "DeleteDomainVerificationResponse";
|
|
287
|
-
const _DE = "DnsEntry";
|
|
288
|
-
const _DL = "DeleteListener";
|
|
289
|
-
const _DLR = "DeleteListenerRequest";
|
|
290
|
-
const _DLRe = "DeleteListenerResponse";
|
|
291
|
-
const _DO = "DnsOptions";
|
|
292
|
-
const _DR = "DnsResource";
|
|
293
|
-
const _DRC = "DeleteResourceConfiguration";
|
|
294
|
-
const _DRCR = "DeleteResourceConfigurationRequest";
|
|
295
|
-
const _DRCRe = "DeleteResourceConfigurationResponse";
|
|
296
|
-
const _DREA = "DeleteResourceEndpointAssociation";
|
|
297
|
-
const _DREAR = "DeleteResourceEndpointAssociationRequest";
|
|
298
|
-
const _DREARe = "DeleteResourceEndpointAssociationResponse";
|
|
299
|
-
const _DRG = "DeleteResourceGateway";
|
|
300
|
-
const _DRGR = "DeleteResourceGatewayRequest";
|
|
301
|
-
const _DRGRe = "DeleteResourceGatewayResponse";
|
|
302
|
-
const _DRP = "DeleteResourcePolicy";
|
|
303
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
304
|
-
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
305
|
-
const _DRR = "DeleteRuleRequest";
|
|
306
|
-
const _DRRe = "DeleteRuleResponse";
|
|
307
|
-
const _DRe = "DeleteRule";
|
|
308
|
-
const _DS = "DeleteService";
|
|
309
|
-
const _DSN = "DeleteServiceNetwork";
|
|
310
|
-
const _DSNR = "DeleteServiceNetworkRequest";
|
|
311
|
-
const _DSNRA = "DeleteServiceNetworkResourceAssociation";
|
|
312
|
-
const _DSNRAR = "DeleteServiceNetworkResourceAssociationRequest";
|
|
313
|
-
const _DSNRARe = "DeleteServiceNetworkResourceAssociationResponse";
|
|
314
|
-
const _DSNRe = "DeleteServiceNetworkResponse";
|
|
315
|
-
const _DSNSA = "DeleteServiceNetworkServiceAssociation";
|
|
316
|
-
const _DSNSAR = "DeleteServiceNetworkServiceAssociationRequest";
|
|
317
|
-
const _DSNSARe = "DeleteServiceNetworkServiceAssociationResponse";
|
|
318
|
-
const _DSNVA = "DeleteServiceNetworkVpcAssociation";
|
|
319
|
-
const _DSNVAR = "DeleteServiceNetworkVpcAssociationRequest";
|
|
320
|
-
const _DSNVARe = "DeleteServiceNetworkVpcAssociationResponse";
|
|
321
|
-
const _DSR = "DeleteServiceRequest";
|
|
322
|
-
const _DSRe = "DeleteServiceResponse";
|
|
323
|
-
const _DT = "DeregisterTargets";
|
|
324
|
-
const _DTG = "DeleteTargetGroup";
|
|
325
|
-
const _DTGR = "DeleteTargetGroupRequest";
|
|
326
|
-
const _DTGRe = "DeleteTargetGroupResponse";
|
|
327
|
-
const _DTR = "DeregisterTargetsRequest";
|
|
328
|
-
const _DTRe = "DeregisterTargetsResponse";
|
|
329
|
-
const _DVL = "DomainVerificationList";
|
|
330
|
-
const _DVS = "DomainVerificationSummary";
|
|
331
|
-
const _FA = "ForwardAction";
|
|
332
|
-
const _FRA = "FixedResponseAction";
|
|
333
|
-
const _GALS = "GetAccessLogSubscription";
|
|
334
|
-
const _GALSR = "GetAccessLogSubscriptionRequest";
|
|
335
|
-
const _GALSRe = "GetAccessLogSubscriptionResponse";
|
|
336
|
-
const _GAP = "GetAuthPolicy";
|
|
337
|
-
const _GAPR = "GetAuthPolicyRequest";
|
|
338
|
-
const _GAPRe = "GetAuthPolicyResponse";
|
|
339
|
-
const _GDV = "GetDomainVerification";
|
|
340
|
-
const _GDVR = "GetDomainVerificationRequest";
|
|
341
|
-
const _GDVRe = "GetDomainVerificationResponse";
|
|
342
|
-
const _GL = "GetListener";
|
|
343
|
-
const _GLR = "GetListenerRequest";
|
|
344
|
-
const _GLRe = "GetListenerResponse";
|
|
345
|
-
const _GR = "GetRule";
|
|
346
|
-
const _GRC = "GetResourceConfiguration";
|
|
347
|
-
const _GRCR = "GetResourceConfigurationRequest";
|
|
348
|
-
const _GRCRe = "GetResourceConfigurationResponse";
|
|
349
|
-
const _GRG = "GetResourceGateway";
|
|
350
|
-
const _GRGR = "GetResourceGatewayRequest";
|
|
351
|
-
const _GRGRe = "GetResourceGatewayResponse";
|
|
352
|
-
const _GRP = "GetResourcePolicy";
|
|
353
|
-
const _GRPR = "GetResourcePolicyRequest";
|
|
354
|
-
const _GRPRe = "GetResourcePolicyResponse";
|
|
355
|
-
const _GRR = "GetRuleRequest";
|
|
356
|
-
const _GRRe = "GetRuleResponse";
|
|
357
|
-
const _GS = "GetService";
|
|
358
|
-
const _GSN = "GetServiceNetwork";
|
|
359
|
-
const _GSNR = "GetServiceNetworkRequest";
|
|
360
|
-
const _GSNRA = "GetServiceNetworkResourceAssociation";
|
|
361
|
-
const _GSNRAR = "GetServiceNetworkResourceAssociationRequest";
|
|
362
|
-
const _GSNRARe = "GetServiceNetworkResourceAssociationResponse";
|
|
363
|
-
const _GSNRe = "GetServiceNetworkResponse";
|
|
364
|
-
const _GSNSA = "GetServiceNetworkServiceAssociation";
|
|
365
|
-
const _GSNSAR = "GetServiceNetworkServiceAssociationRequest";
|
|
366
|
-
const _GSNSARe = "GetServiceNetworkServiceAssociationResponse";
|
|
367
|
-
const _GSNVA = "GetServiceNetworkVpcAssociation";
|
|
368
|
-
const _GSNVAR = "GetServiceNetworkVpcAssociationRequest";
|
|
369
|
-
const _GSNVARe = "GetServiceNetworkVpcAssociationResponse";
|
|
370
|
-
const _GSR = "GetServiceRequest";
|
|
371
|
-
const _GSRe = "GetServiceResponse";
|
|
372
|
-
const _GTG = "GetTargetGroup";
|
|
373
|
-
const _GTGR = "GetTargetGroupRequest";
|
|
374
|
-
const _GTGRe = "GetTargetGroupResponse";
|
|
375
|
-
const _HCC = "HealthCheckConfig";
|
|
376
|
-
const _HM = "HeaderMatch";
|
|
377
|
-
const _HML = "HeaderMatchList";
|
|
378
|
-
const _HMT = "HeaderMatchType";
|
|
379
|
-
const _HMt = "HttpMatch";
|
|
380
|
-
const _IR = "IpResource";
|
|
381
|
-
const _ISE = "InternalServerException";
|
|
382
|
-
const _LALS = "ListAccessLogSubscriptions";
|
|
383
|
-
const _LALSR = "ListAccessLogSubscriptionsRequest";
|
|
384
|
-
const _LALSRi = "ListAccessLogSubscriptionsResponse";
|
|
385
|
-
const _LDV = "ListDomainVerifications";
|
|
386
|
-
const _LDVR = "ListDomainVerificationsRequest";
|
|
387
|
-
const _LDVRi = "ListDomainVerificationsResponse";
|
|
388
|
-
const _LL = "ListListeners";
|
|
389
|
-
const _LLR = "ListListenersRequest";
|
|
390
|
-
const _LLRi = "ListListenersResponse";
|
|
391
|
-
const _LR = "ListRules";
|
|
392
|
-
const _LRC = "ListResourceConfigurations";
|
|
393
|
-
const _LRCR = "ListResourceConfigurationsRequest";
|
|
394
|
-
const _LRCRi = "ListResourceConfigurationsResponse";
|
|
395
|
-
const _LREA = "ListResourceEndpointAssociations";
|
|
396
|
-
const _LREAR = "ListResourceEndpointAssociationsRequest";
|
|
397
|
-
const _LREARi = "ListResourceEndpointAssociationsResponse";
|
|
398
|
-
const _LRG = "ListResourceGateways";
|
|
399
|
-
const _LRGR = "ListResourceGatewaysRequest";
|
|
400
|
-
const _LRGRi = "ListResourceGatewaysResponse";
|
|
401
|
-
const _LRR = "ListRulesRequest";
|
|
402
|
-
const _LRRi = "ListRulesResponse";
|
|
403
|
-
const _LS = "ListenerSummary";
|
|
404
|
-
const _LSL = "ListenerSummaryList";
|
|
405
|
-
const _LSN = "ListServiceNetworks";
|
|
406
|
-
const _LSNR = "ListServiceNetworksRequest";
|
|
407
|
-
const _LSNRA = "ListServiceNetworkResourceAssociations";
|
|
408
|
-
const _LSNRAR = "ListServiceNetworkResourceAssociationsRequest";
|
|
409
|
-
const _LSNRARi = "ListServiceNetworkResourceAssociationsResponse";
|
|
410
|
-
const _LSNRi = "ListServiceNetworksResponse";
|
|
411
|
-
const _LSNSA = "ListServiceNetworkServiceAssociations";
|
|
412
|
-
const _LSNSAR = "ListServiceNetworkServiceAssociationsRequest";
|
|
413
|
-
const _LSNSARi = "ListServiceNetworkServiceAssociationsResponse";
|
|
414
|
-
const _LSNVA = "ListServiceNetworkVpcAssociations";
|
|
415
|
-
const _LSNVAR = "ListServiceNetworkVpcAssociationsRequest";
|
|
416
|
-
const _LSNVARi = "ListServiceNetworkVpcAssociationsResponse";
|
|
417
|
-
const _LSNVEA = "ListServiceNetworkVpcEndpointAssociations";
|
|
418
|
-
const _LSNVEAR = "ListServiceNetworkVpcEndpointAssociationsRequest";
|
|
419
|
-
const _LSNVEARi = "ListServiceNetworkVpcEndpointAssociationsResponse";
|
|
420
|
-
const _LSR = "ListServicesRequest";
|
|
421
|
-
const _LSRi = "ListServicesResponse";
|
|
422
|
-
const _LSi = "ListServices";
|
|
423
|
-
const _LT = "ListTargets";
|
|
424
|
-
const _LTFR = "ListTagsForResource";
|
|
425
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
426
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
427
|
-
const _LTG = "ListTargetGroups";
|
|
428
|
-
const _LTGR = "ListTargetGroupsRequest";
|
|
429
|
-
const _LTGRi = "ListTargetGroupsResponse";
|
|
430
|
-
const _LTR = "ListTargetsRequest";
|
|
431
|
-
const _LTRi = "ListTargetsResponse";
|
|
432
|
-
const _M = "Matcher";
|
|
433
|
-
const _PAP = "PutAuthPolicy";
|
|
434
|
-
const _PAPR = "PutAuthPolicyRequest";
|
|
435
|
-
const _PAPRu = "PutAuthPolicyResponse";
|
|
436
|
-
const _PM = "PathMatch";
|
|
437
|
-
const _PMT = "PathMatchType";
|
|
438
|
-
const _PRP = "PutResourcePolicy";
|
|
439
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
440
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
441
|
-
const _RA = "Retry-After";
|
|
442
|
-
const _RAu = "RuleAction";
|
|
443
|
-
const _RCD = "ResourceConfigurationDefinition";
|
|
444
|
-
const _RCS = "ResourceConfigurationSummary";
|
|
445
|
-
const _RCSL = "ResourceConfigurationSummaryList";
|
|
446
|
-
const _REAL = "ResourceEndpointAssociationList";
|
|
447
|
-
const _REAS = "ResourceEndpointAssociationSummary";
|
|
448
|
-
const _RGL = "ResourceGatewayList";
|
|
449
|
-
const _RGS = "ResourceGatewaySummary";
|
|
450
|
-
const _RM = "RuleMatch";
|
|
451
|
-
const _RNFE = "ResourceNotFoundException";
|
|
452
|
-
const _RS = "RuleSummary";
|
|
453
|
-
const _RSL = "RuleSummaryList";
|
|
454
|
-
const _RT = "RegisterTargets";
|
|
455
|
-
const _RTR = "RegisterTargetsRequest";
|
|
456
|
-
const _RTRe = "RegisterTargetsResponse";
|
|
457
|
-
const _RU = "RuleUpdate";
|
|
458
|
-
const _RUF = "RuleUpdateFailure";
|
|
459
|
-
const _RUFL = "RuleUpdateFailureList";
|
|
460
|
-
const _RUL = "RuleUpdateList";
|
|
461
|
-
const _RUS = "RuleUpdateSuccess";
|
|
462
|
-
const _RUSL = "RuleUpdateSuccessList";
|
|
463
|
-
const _SC = "SharingConfig";
|
|
464
|
-
const _SDV = "StartDomainVerification";
|
|
465
|
-
const _SDVR = "StartDomainVerificationRequest";
|
|
466
|
-
const _SDVRt = "StartDomainVerificationResponse";
|
|
467
|
-
const _SL = "ServiceList";
|
|
468
|
-
const _SNEA = "ServiceNetworkEndpointAssociation";
|
|
469
|
-
const _SNL = "ServiceNetworkList";
|
|
470
|
-
const _SNRAL = "ServiceNetworkResourceAssociationList";
|
|
471
|
-
const _SNRAS = "ServiceNetworkResourceAssociationSummary";
|
|
472
|
-
const _SNS = "ServiceNetworkSummary";
|
|
473
|
-
const _SNSAL = "ServiceNetworkServiceAssociationList";
|
|
474
|
-
const _SNSAS = "ServiceNetworkServiceAssociationSummary";
|
|
475
|
-
const _SNVAL = "ServiceNetworkVpcAssociationList";
|
|
476
|
-
const _SNVAS = "ServiceNetworkVpcAssociationSummary";
|
|
477
|
-
const _SNVEAL = "ServiceNetworkVpcEndpointAssociationList";
|
|
478
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
479
|
-
const _SS = "ServiceSummary";
|
|
480
|
-
const _T = "Target";
|
|
481
|
-
const _TE = "ThrottlingException";
|
|
482
|
-
const _TF = "TargetFailure";
|
|
483
|
-
const _TFL = "TargetFailureList";
|
|
484
|
-
const _TGC = "TargetGroupConfig";
|
|
485
|
-
const _TGL = "TargetGroupList";
|
|
486
|
-
const _TGS = "TargetGroupSummary";
|
|
487
|
-
const _TL = "TargetList";
|
|
488
|
-
const _TMC = "TxtMethodConfig";
|
|
489
|
-
const _TR = "TagResource";
|
|
490
|
-
const _TRR = "TagResourceRequest";
|
|
491
|
-
const _TRRa = "TagResourceResponse";
|
|
492
|
-
const _TS = "TargetSummary";
|
|
493
|
-
const _TSL = "TargetSummaryList";
|
|
494
|
-
const _UALS = "UpdateAccessLogSubscription";
|
|
495
|
-
const _UALSR = "UpdateAccessLogSubscriptionRequest";
|
|
496
|
-
const _UALSRp = "UpdateAccessLogSubscriptionResponse";
|
|
497
|
-
const _UL = "UpdateListener";
|
|
498
|
-
const _ULR = "UpdateListenerRequest";
|
|
499
|
-
const _ULRp = "UpdateListenerResponse";
|
|
500
|
-
const _UR = "UntagResource";
|
|
501
|
-
const _URC = "UpdateResourceConfiguration";
|
|
502
|
-
const _URCR = "UpdateResourceConfigurationRequest";
|
|
503
|
-
const _URCRp = "UpdateResourceConfigurationResponse";
|
|
504
|
-
const _URG = "UpdateResourceGateway";
|
|
505
|
-
const _URGR = "UpdateResourceGatewayRequest";
|
|
506
|
-
const _URGRp = "UpdateResourceGatewayResponse";
|
|
507
|
-
const _URR = "UntagResourceRequest";
|
|
508
|
-
const _URRn = "UntagResourceResponse";
|
|
509
|
-
const _URRp = "UpdateRuleRequest";
|
|
510
|
-
const _URRpd = "UpdateRuleResponse";
|
|
511
|
-
const _URp = "UpdateRule";
|
|
512
|
-
const _US = "UpdateService";
|
|
513
|
-
const _USN = "UpdateServiceNetwork";
|
|
514
|
-
const _USNR = "UpdateServiceNetworkRequest";
|
|
515
|
-
const _USNRp = "UpdateServiceNetworkResponse";
|
|
516
|
-
const _USNVA = "UpdateServiceNetworkVpcAssociation";
|
|
517
|
-
const _USNVAR = "UpdateServiceNetworkVpcAssociationRequest";
|
|
518
|
-
const _USNVARp = "UpdateServiceNetworkVpcAssociationResponse";
|
|
519
|
-
const _USR = "UpdateServiceRequest";
|
|
520
|
-
const _USRp = "UpdateServiceResponse";
|
|
521
|
-
const _UTG = "UpdateTargetGroup";
|
|
522
|
-
const _UTGR = "UpdateTargetGroupRequest";
|
|
523
|
-
const _UTGRp = "UpdateTargetGroupResponse";
|
|
524
|
-
const _VE = "ValidationException";
|
|
525
|
-
const _VEF = "ValidationExceptionField";
|
|
526
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
527
|
-
const _WTG = "WeightedTargetGroup";
|
|
528
|
-
const _WTGL = "WeightedTargetGroupList";
|
|
529
|
-
const _a = "arn";
|
|
530
|
-
const _aATSSN = "allowAssociationToShareableServiceNetwork";
|
|
531
|
-
const _aLSI = "accessLogSubscriptionIdentifier";
|
|
532
|
-
const _aM = "amazonManaged";
|
|
533
|
-
const _aR = "arnResource";
|
|
534
|
-
const _aT = "authType";
|
|
535
|
-
const _ac = "action";
|
|
536
|
-
const _c = "client";
|
|
537
|
-
const _cA = "createdAt";
|
|
538
|
-
const _cAe = "certificateArn";
|
|
539
|
-
const _cB = "createdBy";
|
|
540
|
-
const _cDN = "customDomainName";
|
|
541
|
-
const _cS = "caseSensitive";
|
|
542
|
-
const _cT = "clientToken";
|
|
543
|
-
const _co = "config";
|
|
544
|
-
const _con = "contains";
|
|
545
|
-
const _dA = "destinationArn";
|
|
546
|
-
const _dAe = "defaultAction";
|
|
547
|
-
const _dE = "dnsEntry";
|
|
548
|
-
const _dN = "domainName";
|
|
549
|
-
const _dO = "dnsOptions";
|
|
550
|
-
const _dR = "dnsResource";
|
|
551
|
-
const _dVA = "domainVerificationArn";
|
|
552
|
-
const _dVI = "domainVerificationIdentifier";
|
|
553
|
-
const _dVIo = "domainVerificationId";
|
|
554
|
-
const _dVS = "domainVerificationStatus";
|
|
555
|
-
const _e = "error";
|
|
556
|
-
const _en = "enabled";
|
|
557
|
-
const _ex = "exact";
|
|
558
|
-
const _f = "forward";
|
|
559
|
-
const _fC = "failureCode";
|
|
560
|
-
const _fL = "fieldList";
|
|
561
|
-
const _fM = "failureMessage";
|
|
562
|
-
const _fR = "failureReason";
|
|
563
|
-
const _fRi = "fixedResponse";
|
|
564
|
-
const _gD = "groupDomain";
|
|
565
|
-
const _h = "http";
|
|
566
|
-
const _hC = "healthCheck";
|
|
567
|
-
const _hCIS = "healthCheckIntervalSeconds";
|
|
568
|
-
const _hCTS = "healthCheckTimeoutSeconds";
|
|
569
|
-
const _hCt = "httpCode";
|
|
570
|
-
const _hE = "httpError";
|
|
571
|
-
const _hH = "httpHeader";
|
|
572
|
-
const _hM = "headerMatches";
|
|
573
|
-
const _hMt = "httpMatch";
|
|
574
|
-
const _hQ = "httpQuery";
|
|
575
|
-
const _hTC = "healthyThresholdCount";
|
|
576
|
-
const _hZI = "hostedZoneId";
|
|
577
|
-
const _i = "id";
|
|
578
|
-
const _iA = "ipAddress";
|
|
579
|
-
const _iAPE = "ipv4AddressesPerEni";
|
|
580
|
-
const _iAT = "ipAddressType";
|
|
581
|
-
const _iC = "includeChildren";
|
|
582
|
-
const _iD = "isDefault";
|
|
583
|
-
const _iMA = "isManagedAssociation";
|
|
584
|
-
const _iR = "ipResource";
|
|
585
|
-
const _it = "items";
|
|
586
|
-
const _lESV = "lambdaEventStructureVersion";
|
|
587
|
-
const _lI = "listenerIdentifier";
|
|
588
|
-
const _lUA = "lastUpdatedAt";
|
|
589
|
-
const _lVT = "lastVerifiedTime";
|
|
590
|
-
const _m = "message";
|
|
591
|
-
const _mR = "maxResults";
|
|
592
|
-
const _ma = "match";
|
|
593
|
-
const _mat = "matcher";
|
|
594
|
-
const _me = "method";
|
|
595
|
-
const _n = "name";
|
|
596
|
-
const _nOARC = "numberOfAssociatedResourceConfigurations";
|
|
597
|
-
const _nOAS = "numberOfAssociatedServices";
|
|
598
|
-
const _nOAVPC = "numberOfAssociatedVPCs";
|
|
599
|
-
const _nT = "nextToken";
|
|
600
|
-
const _p = "protocol";
|
|
601
|
-
const _pDE = "privateDnsEnabled";
|
|
602
|
-
const _pDEr = "privateDnsEntry";
|
|
603
|
-
const _pDP = "privateDnsPreference";
|
|
604
|
-
const _pDSD = "privateDnsSpecifiedDomains";
|
|
605
|
-
const _pM = "pathMatch";
|
|
606
|
-
const _pR = "portRanges";
|
|
607
|
-
const _pV = "protocolVersion";
|
|
608
|
-
const _pa = "path";
|
|
609
|
-
const _po = "port";
|
|
610
|
-
const _pol = "policy";
|
|
611
|
-
const _pr = "priority";
|
|
612
|
-
const _pre = "prefix";
|
|
613
|
-
const _qC = "quotaCode";
|
|
614
|
-
const _r = "rules";
|
|
615
|
-
const _rA = "resourceArn";
|
|
616
|
-
const _rAS = "retryAfterSeconds";
|
|
617
|
-
const _rC = "reasonCode";
|
|
618
|
-
const _rCA = "resourceConfigurationArn";
|
|
619
|
-
const _rCD = "resourceConfigurationDefinition";
|
|
620
|
-
const _rCGI = "resourceConfigurationGroupIdentifier";
|
|
621
|
-
const _rCGIe = "resourceConfigurationGroupId";
|
|
622
|
-
const _rCI = "resourceConfigurationIdentifier";
|
|
623
|
-
const _rCIe = "resourceConfigurationId";
|
|
624
|
-
const _rCN = "resourceConfigurationName";
|
|
625
|
-
const _rEAI = "resourceEndpointAssociationIdentifier";
|
|
626
|
-
const _rGI = "resourceGatewayIdentifier";
|
|
627
|
-
const _rGIe = "resourceGatewayId";
|
|
628
|
-
const _rI = "resourceId";
|
|
629
|
-
const _rIe = "resourceIdentifier";
|
|
630
|
-
const _rIu = "ruleIdentifier";
|
|
631
|
-
const _rT = "resourceType";
|
|
632
|
-
const _re = "reason";
|
|
633
|
-
const _s = "successful";
|
|
634
|
-
const _sA = "serviceArn";
|
|
635
|
-
const _sAe = "serviceArns";
|
|
636
|
-
const _sC = "sharingConfig";
|
|
637
|
-
const _sCe = "serviceCode";
|
|
638
|
-
const _sCt = "statusCode";
|
|
639
|
-
const _sGI = "securityGroupIds";
|
|
640
|
-
const _sI = "serviceIdentifier";
|
|
641
|
-
const _sIe = "serviceId";
|
|
642
|
-
const _sIu = "subnetIds";
|
|
643
|
-
const _sN = "serviceName";
|
|
644
|
-
const _sNA = "serviceNetworkArn";
|
|
645
|
-
const _sNI = "serviceNetworkIdentifier";
|
|
646
|
-
const _sNIe = "serviceNetworkId";
|
|
647
|
-
const _sNLT = "serviceNetworkLogType";
|
|
648
|
-
const _sNN = "serviceNetworkName";
|
|
649
|
-
const _sNRAI = "serviceNetworkResourceAssociationIdentifier";
|
|
650
|
-
const _sNSAI = "serviceNetworkServiceAssociationIdentifier";
|
|
651
|
-
const _sNVAI = "serviceNetworkVpcAssociationIdentifier";
|
|
652
|
-
const _se = "server";
|
|
653
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.vpclattice";
|
|
654
|
-
const _st = "status";
|
|
655
|
-
const _sta = "state";
|
|
656
|
-
const _t = "tags";
|
|
657
|
-
const _tG = "targetGroups";
|
|
658
|
-
const _tGI = "targetGroupIdentifier";
|
|
659
|
-
const _tGT = "targetGroupType";
|
|
660
|
-
const _tK = "tagKeys";
|
|
661
|
-
const _tMC = "txtMethodConfig";
|
|
662
|
-
const _ta = "targets";
|
|
663
|
-
const _ty = "type";
|
|
664
|
-
const _u = "unsuccessful";
|
|
665
|
-
const _uTC = "unhealthyThresholdCount";
|
|
666
|
-
const _v = "value";
|
|
667
|
-
const _vEI = "vpcEndpointId";
|
|
668
|
-
const _vEO = "vpcEndpointOwner";
|
|
669
|
-
const _vEOI = "vpcEndpointOwnerId";
|
|
670
|
-
const _vI = "vpcIdentifier";
|
|
671
|
-
const _vIp = "vpcId";
|
|
672
|
-
const _w = "weight";
|
|
673
|
-
const n0 = "com.amazonaws.vpclattice";
|
|
674
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
675
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
676
|
-
[_m],
|
|
677
|
-
[0], 1
|
|
678
|
-
];
|
|
679
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
680
|
-
var AccessLogSubscriptionSummary$ = [3, n0, _ALSS,
|
|
681
|
-
0,
|
|
682
|
-
[_i, _a, _rI, _rA, _dA, _cA, _lUA, _sNLT],
|
|
683
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
684
|
-
];
|
|
685
|
-
var ArnResource$ = [3, n0, _AR,
|
|
686
|
-
0,
|
|
687
|
-
[_a],
|
|
688
|
-
[0]
|
|
689
|
-
];
|
|
690
|
-
var BatchUpdateRuleRequest$ = [3, n0, _BURR,
|
|
691
|
-
0,
|
|
692
|
-
[_sI, _lI, _r],
|
|
693
|
-
[[0, 1], [0, 1], () => RuleUpdateList], 3
|
|
694
|
-
];
|
|
695
|
-
var BatchUpdateRuleResponse$ = [3, n0, _BURRa,
|
|
696
|
-
0,
|
|
697
|
-
[_s, _u],
|
|
698
|
-
[() => RuleUpdateSuccessList, () => RuleUpdateFailureList]
|
|
699
|
-
];
|
|
700
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
701
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
702
|
-
[_m, _rI, _rT],
|
|
703
|
-
[0, 0, 0], 3
|
|
704
|
-
];
|
|
705
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
706
|
-
var CreateAccessLogSubscriptionRequest$ = [3, n0, _CALSR,
|
|
707
|
-
0,
|
|
708
|
-
[_rIe, _dA, _cT, _sNLT, _t],
|
|
709
|
-
[0, 0, [0, 4], 0, 128 | 0], 2
|
|
710
|
-
];
|
|
711
|
-
var CreateAccessLogSubscriptionResponse$ = [3, n0, _CALSRr,
|
|
712
|
-
0,
|
|
713
|
-
[_i, _a, _rI, _rA, _dA, _sNLT],
|
|
714
|
-
[0, 0, 0, 0, 0, 0], 5
|
|
715
|
-
];
|
|
716
|
-
var CreateListenerRequest$ = [3, n0, _CLR,
|
|
717
|
-
0,
|
|
718
|
-
[_sI, _n, _p, _dAe, _po, _cT, _t],
|
|
719
|
-
[[0, 1], 0, 0, () => RuleAction$, 1, [0, 4], 128 | 0], 4
|
|
720
|
-
];
|
|
721
|
-
var CreateListenerResponse$ = [3, n0, _CLRr,
|
|
722
|
-
0,
|
|
723
|
-
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe],
|
|
724
|
-
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$]
|
|
725
|
-
];
|
|
726
|
-
var CreateResourceConfigurationRequest$ = [3, n0, _CRCR,
|
|
727
|
-
0,
|
|
728
|
-
[_n, _ty, _pR, _p, _rGI, _rCGI, _rCD, _aATSSN, _cDN, _gD, _dVI, _cT, _t],
|
|
729
|
-
[0, 0, 64 | 0, 0, 0, 0, () => ResourceConfigurationDefinition$, 2, 0, 0, 0, [0, 4], 128 | 0], 2
|
|
730
|
-
];
|
|
731
|
-
var CreateResourceConfigurationResponse$ = [3, n0, _CRCRr,
|
|
732
|
-
0,
|
|
733
|
-
[_i, _n, _a, _rGIe, _rCGIe, _ty, _pR, _p, _st, _rCD, _aATSSN, _cA, _fR, _cDN, _dVIo, _gD, _dVA],
|
|
734
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => ResourceConfigurationDefinition$, 2, 5, 0, 0, 0, 0, 0]
|
|
735
|
-
];
|
|
736
|
-
var CreateResourceGatewayRequest$ = [3, n0, _CRGR,
|
|
737
|
-
0,
|
|
738
|
-
[_n, _cT, _vI, _sIu, _sGI, _iAT, _iAPE, _t],
|
|
739
|
-
[0, [0, 4], 0, 64 | 0, 64 | 0, 0, 1, 128 | 0], 1
|
|
740
|
-
];
|
|
741
|
-
var CreateResourceGatewayResponse$ = [3, n0, _CRGRr,
|
|
742
|
-
0,
|
|
743
|
-
[_n, _i, _a, _st, _vI, _sIu, _sGI, _iAT, _iAPE],
|
|
744
|
-
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 1]
|
|
745
|
-
];
|
|
746
|
-
var CreateRuleRequest$ = [3, n0, _CRR,
|
|
747
|
-
0,
|
|
748
|
-
[_sI, _lI, _n, _ma, _pr, _ac, _cT, _t],
|
|
749
|
-
[[0, 1], [0, 1], 0, () => RuleMatch$, 1, () => RuleAction$, [0, 4], 128 | 0], 6
|
|
750
|
-
];
|
|
751
|
-
var CreateRuleResponse$ = [3, n0, _CRRr,
|
|
752
|
-
0,
|
|
753
|
-
[_a, _i, _n, _ma, _pr, _ac],
|
|
754
|
-
[0, 0, 0, () => RuleMatch$, 1, () => RuleAction$]
|
|
755
|
-
];
|
|
756
|
-
var CreateServiceNetworkRequest$ = [3, n0, _CSNR,
|
|
757
|
-
0,
|
|
758
|
-
[_n, _cT, _aT, _t, _sC],
|
|
759
|
-
[0, [0, 4], 0, 128 | 0, () => SharingConfig$], 1
|
|
760
|
-
];
|
|
761
|
-
var CreateServiceNetworkResourceAssociationRequest$ = [3, n0, _CSNRAR,
|
|
762
|
-
0,
|
|
763
|
-
[_rCI, _sNI, _cT, _pDE, _t],
|
|
764
|
-
[0, 0, [0, 4], 2, 128 | 0], 2
|
|
765
|
-
];
|
|
766
|
-
var CreateServiceNetworkResourceAssociationResponse$ = [3, n0, _CSNRARr,
|
|
767
|
-
0,
|
|
768
|
-
[_i, _a, _st, _cB, _pDE],
|
|
769
|
-
[0, 0, 0, 0, 2]
|
|
770
|
-
];
|
|
771
|
-
var CreateServiceNetworkResponse$ = [3, n0, _CSNRr,
|
|
772
|
-
0,
|
|
773
|
-
[_i, _n, _a, _sC, _aT],
|
|
774
|
-
[0, 0, 0, () => SharingConfig$, 0]
|
|
775
|
-
];
|
|
776
|
-
var CreateServiceNetworkServiceAssociationRequest$ = [3, n0, _CSNSAR,
|
|
777
|
-
0,
|
|
778
|
-
[_sI, _sNI, _cT, _t],
|
|
779
|
-
[0, 0, [0, 4], 128 | 0], 2
|
|
780
|
-
];
|
|
781
|
-
var CreateServiceNetworkServiceAssociationResponse$ = [3, n0, _CSNSARr,
|
|
782
|
-
0,
|
|
783
|
-
[_i, _st, _a, _cB, _cDN, _dE],
|
|
784
|
-
[0, 0, 0, 0, 0, () => DnsEntry$]
|
|
785
|
-
];
|
|
786
|
-
var CreateServiceNetworkVpcAssociationRequest$ = [3, n0, _CSNVAR,
|
|
787
|
-
0,
|
|
788
|
-
[_sNI, _vI, _cT, _pDE, _sGI, _t, _dO],
|
|
789
|
-
[0, 0, [0, 4], 2, 64 | 0, 128 | 0, () => DnsOptions$], 2
|
|
790
|
-
];
|
|
791
|
-
var CreateServiceNetworkVpcAssociationResponse$ = [3, n0, _CSNVARr,
|
|
792
|
-
0,
|
|
793
|
-
[_i, _st, _a, _cB, _sGI, _pDE, _dO],
|
|
794
|
-
[0, 0, 0, 0, 64 | 0, 2, () => DnsOptions$]
|
|
795
|
-
];
|
|
796
|
-
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
797
|
-
0,
|
|
798
|
-
[_n, _cT, _t, _cDN, _cAe, _aT],
|
|
799
|
-
[0, [0, 4], 128 | 0, 0, 0, 0], 1
|
|
800
|
-
];
|
|
801
|
-
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
802
|
-
0,
|
|
803
|
-
[_i, _a, _n, _cDN, _cAe, _st, _aT, _dE],
|
|
804
|
-
[0, 0, 0, 0, 0, 0, 0, () => DnsEntry$]
|
|
805
|
-
];
|
|
806
|
-
var CreateTargetGroupRequest$ = [3, n0, _CTGR,
|
|
807
|
-
0,
|
|
808
|
-
[_n, _ty, _co, _cT, _t],
|
|
809
|
-
[0, 0, () => TargetGroupConfig$, [0, 4], 128 | 0], 2
|
|
810
|
-
];
|
|
811
|
-
var CreateTargetGroupResponse$ = [3, n0, _CTGRr,
|
|
812
|
-
0,
|
|
813
|
-
[_i, _a, _n, _ty, _co, _st],
|
|
814
|
-
[0, 0, 0, 0, () => TargetGroupConfig$, 0]
|
|
815
|
-
];
|
|
816
|
-
var DeleteAccessLogSubscriptionRequest$ = [3, n0, _DALSR,
|
|
817
|
-
0,
|
|
818
|
-
[_aLSI],
|
|
819
|
-
[[0, 1]], 1
|
|
820
|
-
];
|
|
821
|
-
var DeleteAccessLogSubscriptionResponse$ = [3, n0, _DALSRe,
|
|
822
|
-
0,
|
|
823
|
-
[],
|
|
824
|
-
[]
|
|
825
|
-
];
|
|
826
|
-
var DeleteAuthPolicyRequest$ = [3, n0, _DAPR,
|
|
827
|
-
0,
|
|
828
|
-
[_rIe],
|
|
829
|
-
[[0, 1]], 1
|
|
830
|
-
];
|
|
831
|
-
var DeleteAuthPolicyResponse$ = [3, n0, _DAPRe,
|
|
832
|
-
0,
|
|
833
|
-
[],
|
|
834
|
-
[]
|
|
835
|
-
];
|
|
836
|
-
var DeleteDomainVerificationRequest$ = [3, n0, _DDVR,
|
|
837
|
-
0,
|
|
838
|
-
[_dVI],
|
|
839
|
-
[[0, 1]], 1
|
|
840
|
-
];
|
|
841
|
-
var DeleteDomainVerificationResponse$ = [3, n0, _DDVRe,
|
|
842
|
-
0,
|
|
843
|
-
[],
|
|
844
|
-
[]
|
|
845
|
-
];
|
|
846
|
-
var DeleteListenerRequest$ = [3, n0, _DLR,
|
|
847
|
-
0,
|
|
848
|
-
[_sI, _lI],
|
|
849
|
-
[[0, 1], [0, 1]], 2
|
|
850
|
-
];
|
|
851
|
-
var DeleteListenerResponse$ = [3, n0, _DLRe,
|
|
852
|
-
0,
|
|
853
|
-
[],
|
|
854
|
-
[]
|
|
855
|
-
];
|
|
856
|
-
var DeleteResourceConfigurationRequest$ = [3, n0, _DRCR,
|
|
857
|
-
0,
|
|
858
|
-
[_rCI],
|
|
859
|
-
[[0, 1]], 1
|
|
860
|
-
];
|
|
861
|
-
var DeleteResourceConfigurationResponse$ = [3, n0, _DRCRe,
|
|
862
|
-
0,
|
|
863
|
-
[],
|
|
864
|
-
[]
|
|
865
|
-
];
|
|
866
|
-
var DeleteResourceEndpointAssociationRequest$ = [3, n0, _DREAR,
|
|
867
|
-
0,
|
|
868
|
-
[_rEAI],
|
|
869
|
-
[[0, 1]], 1
|
|
870
|
-
];
|
|
871
|
-
var DeleteResourceEndpointAssociationResponse$ = [3, n0, _DREARe,
|
|
872
|
-
0,
|
|
873
|
-
[_i, _a, _rCIe, _rCA, _vEI],
|
|
874
|
-
[0, 0, 0, 0, 0]
|
|
875
|
-
];
|
|
876
|
-
var DeleteResourceGatewayRequest$ = [3, n0, _DRGR,
|
|
877
|
-
0,
|
|
878
|
-
[_rGI],
|
|
879
|
-
[[0, 1]], 1
|
|
880
|
-
];
|
|
881
|
-
var DeleteResourceGatewayResponse$ = [3, n0, _DRGRe,
|
|
882
|
-
0,
|
|
883
|
-
[_i, _a, _n, _st],
|
|
884
|
-
[0, 0, 0, 0]
|
|
885
|
-
];
|
|
886
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
887
|
-
0,
|
|
888
|
-
[_rA],
|
|
889
|
-
[[0, 1]], 1
|
|
890
|
-
];
|
|
891
|
-
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
892
|
-
0,
|
|
893
|
-
[],
|
|
894
|
-
[]
|
|
895
|
-
];
|
|
896
|
-
var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
897
|
-
0,
|
|
898
|
-
[_sI, _lI, _rIu],
|
|
899
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
900
|
-
];
|
|
901
|
-
var DeleteRuleResponse$ = [3, n0, _DRRe,
|
|
902
|
-
0,
|
|
903
|
-
[],
|
|
904
|
-
[]
|
|
905
|
-
];
|
|
906
|
-
var DeleteServiceNetworkRequest$ = [3, n0, _DSNR,
|
|
907
|
-
0,
|
|
908
|
-
[_sNI],
|
|
909
|
-
[[0, 1]], 1
|
|
910
|
-
];
|
|
911
|
-
var DeleteServiceNetworkResourceAssociationRequest$ = [3, n0, _DSNRAR,
|
|
912
|
-
0,
|
|
913
|
-
[_sNRAI],
|
|
914
|
-
[[0, 1]], 1
|
|
915
|
-
];
|
|
916
|
-
var DeleteServiceNetworkResourceAssociationResponse$ = [3, n0, _DSNRARe,
|
|
917
|
-
0,
|
|
918
|
-
[_i, _a, _st],
|
|
919
|
-
[0, 0, 0]
|
|
920
|
-
];
|
|
921
|
-
var DeleteServiceNetworkResponse$ = [3, n0, _DSNRe,
|
|
922
|
-
0,
|
|
923
|
-
[],
|
|
924
|
-
[]
|
|
925
|
-
];
|
|
926
|
-
var DeleteServiceNetworkServiceAssociationRequest$ = [3, n0, _DSNSAR,
|
|
927
|
-
0,
|
|
928
|
-
[_sNSAI],
|
|
929
|
-
[[0, 1]], 1
|
|
930
|
-
];
|
|
931
|
-
var DeleteServiceNetworkServiceAssociationResponse$ = [3, n0, _DSNSARe,
|
|
932
|
-
0,
|
|
933
|
-
[_i, _st, _a],
|
|
934
|
-
[0, 0, 0]
|
|
935
|
-
];
|
|
936
|
-
var DeleteServiceNetworkVpcAssociationRequest$ = [3, n0, _DSNVAR,
|
|
937
|
-
0,
|
|
938
|
-
[_sNVAI],
|
|
939
|
-
[[0, 1]], 1
|
|
940
|
-
];
|
|
941
|
-
var DeleteServiceNetworkVpcAssociationResponse$ = [3, n0, _DSNVARe,
|
|
942
|
-
0,
|
|
943
|
-
[_i, _st, _a],
|
|
944
|
-
[0, 0, 0]
|
|
945
|
-
];
|
|
946
|
-
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
947
|
-
0,
|
|
948
|
-
[_sI],
|
|
949
|
-
[[0, 1]], 1
|
|
950
|
-
];
|
|
951
|
-
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
952
|
-
0,
|
|
953
|
-
[_i, _a, _n, _st],
|
|
954
|
-
[0, 0, 0, 0]
|
|
955
|
-
];
|
|
956
|
-
var DeleteTargetGroupRequest$ = [3, n0, _DTGR,
|
|
957
|
-
0,
|
|
958
|
-
[_tGI],
|
|
959
|
-
[[0, 1]], 1
|
|
960
|
-
];
|
|
961
|
-
var DeleteTargetGroupResponse$ = [3, n0, _DTGRe,
|
|
962
|
-
0,
|
|
963
|
-
[_i, _a, _st],
|
|
964
|
-
[0, 0, 0]
|
|
965
|
-
];
|
|
966
|
-
var DeregisterTargetsRequest$ = [3, n0, _DTR,
|
|
967
|
-
0,
|
|
968
|
-
[_tGI, _ta],
|
|
969
|
-
[[0, 1], () => TargetList], 2
|
|
970
|
-
];
|
|
971
|
-
var DeregisterTargetsResponse$ = [3, n0, _DTRe,
|
|
972
|
-
0,
|
|
973
|
-
[_s, _u],
|
|
974
|
-
[() => TargetList, () => TargetFailureList]
|
|
975
|
-
];
|
|
976
|
-
var DnsEntry$ = [3, n0, _DE,
|
|
977
|
-
0,
|
|
978
|
-
[_dN, _hZI],
|
|
979
|
-
[0, 0]
|
|
980
|
-
];
|
|
981
|
-
var DnsOptions$ = [3, n0, _DO,
|
|
982
|
-
0,
|
|
983
|
-
[_pDP, _pDSD],
|
|
984
|
-
[0, 64 | 0]
|
|
985
|
-
];
|
|
986
|
-
var DnsResource$ = [3, n0, _DR,
|
|
987
|
-
0,
|
|
988
|
-
[_dN, _iAT],
|
|
989
|
-
[0, 0]
|
|
990
|
-
];
|
|
991
|
-
var DomainVerificationSummary$ = [3, n0, _DVS,
|
|
992
|
-
0,
|
|
993
|
-
[_i, _a, _dN, _st, _cA, _tMC, _lVT, _t],
|
|
994
|
-
[0, 0, 0, 0, 5, () => TxtMethodConfig$, 5, 128 | 0], 5
|
|
995
|
-
];
|
|
996
|
-
var FixedResponseAction$ = [3, n0, _FRA,
|
|
997
|
-
0,
|
|
998
|
-
[_sCt],
|
|
999
|
-
[1], 1
|
|
1000
|
-
];
|
|
1001
|
-
var ForwardAction$ = [3, n0, _FA,
|
|
1002
|
-
0,
|
|
1003
|
-
[_tG],
|
|
1004
|
-
[() => WeightedTargetGroupList], 1
|
|
1005
|
-
];
|
|
1006
|
-
var GetAccessLogSubscriptionRequest$ = [3, n0, _GALSR,
|
|
1007
|
-
0,
|
|
1008
|
-
[_aLSI],
|
|
1009
|
-
[[0, 1]], 1
|
|
1010
|
-
];
|
|
1011
|
-
var GetAccessLogSubscriptionResponse$ = [3, n0, _GALSRe,
|
|
1012
|
-
0,
|
|
1013
|
-
[_i, _a, _rI, _rA, _dA, _cA, _lUA, _sNLT],
|
|
1014
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1015
|
-
];
|
|
1016
|
-
var GetAuthPolicyRequest$ = [3, n0, _GAPR,
|
|
1017
|
-
0,
|
|
1018
|
-
[_rIe],
|
|
1019
|
-
[[0, 1]], 1
|
|
1020
|
-
];
|
|
1021
|
-
var GetAuthPolicyResponse$ = [3, n0, _GAPRe,
|
|
1022
|
-
0,
|
|
1023
|
-
[_pol, _sta, _cA, _lUA],
|
|
1024
|
-
[0, 0, 5, 5]
|
|
1025
|
-
];
|
|
1026
|
-
var GetDomainVerificationRequest$ = [3, n0, _GDVR,
|
|
1027
|
-
0,
|
|
1028
|
-
[_dVI],
|
|
1029
|
-
[[0, 1]], 1
|
|
1030
|
-
];
|
|
1031
|
-
var GetDomainVerificationResponse$ = [3, n0, _GDVRe,
|
|
1032
|
-
0,
|
|
1033
|
-
[_i, _a, _dN, _st, _cA, _tMC, _lVT, _t],
|
|
1034
|
-
[0, 0, 0, 0, 5, () => TxtMethodConfig$, 5, 128 | 0], 5
|
|
1035
|
-
];
|
|
1036
|
-
var GetListenerRequest$ = [3, n0, _GLR,
|
|
1037
|
-
0,
|
|
1038
|
-
[_sI, _lI],
|
|
1039
|
-
[[0, 1], [0, 1]], 2
|
|
1040
|
-
];
|
|
1041
|
-
var GetListenerResponse$ = [3, n0, _GLRe,
|
|
1042
|
-
0,
|
|
1043
|
-
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe, _cA, _lUA],
|
|
1044
|
-
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$, 5, 5]
|
|
1045
|
-
];
|
|
1046
|
-
var GetResourceConfigurationRequest$ = [3, n0, _GRCR,
|
|
1047
|
-
0,
|
|
1048
|
-
[_rCI],
|
|
1049
|
-
[[0, 1]], 1
|
|
1050
|
-
];
|
|
1051
|
-
var GetResourceConfigurationResponse$ = [3, n0, _GRCRe,
|
|
1052
|
-
0,
|
|
1053
|
-
[_i, _n, _a, _rGIe, _rCGIe, _ty, _aATSSN, _pR, _p, _cDN, _st, _rCD, _cA, _aM, _fR, _lUA, _dVIo, _dVA, _dVS, _gD],
|
|
1054
|
-
[0, 0, 0, 0, 0, 0, 2, 64 | 0, 0, 0, 0, () => ResourceConfigurationDefinition$, 5, 2, 0, 5, 0, 0, 0, 0]
|
|
1055
|
-
];
|
|
1056
|
-
var GetResourceGatewayRequest$ = [3, n0, _GRGR,
|
|
1057
|
-
0,
|
|
1058
|
-
[_rGI],
|
|
1059
|
-
[[0, 1]], 1
|
|
1060
|
-
];
|
|
1061
|
-
var GetResourceGatewayResponse$ = [3, n0, _GRGRe,
|
|
1062
|
-
0,
|
|
1063
|
-
[_n, _i, _a, _st, _vIp, _sIu, _sGI, _iAT, _iAPE, _cA, _lUA],
|
|
1064
|
-
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 1, 5, 5]
|
|
1065
|
-
];
|
|
1066
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
1067
|
-
0,
|
|
1068
|
-
[_rA],
|
|
1069
|
-
[[0, 1]], 1
|
|
1070
|
-
];
|
|
1071
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
1072
|
-
0,
|
|
1073
|
-
[_pol],
|
|
1074
|
-
[0]
|
|
1075
|
-
];
|
|
1076
|
-
var GetRuleRequest$ = [3, n0, _GRR,
|
|
1077
|
-
0,
|
|
1078
|
-
[_sI, _lI, _rIu],
|
|
1079
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
1080
|
-
];
|
|
1081
|
-
var GetRuleResponse$ = [3, n0, _GRRe,
|
|
1082
|
-
0,
|
|
1083
|
-
[_a, _i, _n, _iD, _ma, _pr, _ac, _cA, _lUA],
|
|
1084
|
-
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$, 5, 5]
|
|
1085
|
-
];
|
|
1086
|
-
var GetServiceNetworkRequest$ = [3, n0, _GSNR,
|
|
1087
|
-
0,
|
|
1088
|
-
[_sNI],
|
|
1089
|
-
[[0, 1]], 1
|
|
1090
|
-
];
|
|
1091
|
-
var GetServiceNetworkResourceAssociationRequest$ = [3, n0, _GSNRAR,
|
|
1092
|
-
0,
|
|
1093
|
-
[_sNRAI],
|
|
1094
|
-
[[0, 1]], 1
|
|
1095
|
-
];
|
|
1096
|
-
var GetServiceNetworkResourceAssociationResponse$ = [3, n0, _GSNRARe,
|
|
1097
|
-
0,
|
|
1098
|
-
[_i, _a, _st, _cB, _cA, _rCIe, _rCA, _rCN, _sNIe, _sNA, _sNN, _fR, _fC, _lUA, _pDEr, _pDE, _dE, _iMA, _dVS],
|
|
1099
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, () => DnsEntry$, 2, () => DnsEntry$, 2, 0]
|
|
1100
|
-
];
|
|
1101
|
-
var GetServiceNetworkResponse$ = [3, n0, _GSNRe,
|
|
1102
|
-
0,
|
|
1103
|
-
[_i, _n, _cA, _lUA, _a, _aT, _sC, _nOAVPC, _nOAS],
|
|
1104
|
-
[0, 0, 5, 5, 0, 0, () => SharingConfig$, 1, 1]
|
|
1105
|
-
];
|
|
1106
|
-
var GetServiceNetworkServiceAssociationRequest$ = [3, n0, _GSNSAR,
|
|
1107
|
-
0,
|
|
1108
|
-
[_sNSAI],
|
|
1109
|
-
[[0, 1]], 1
|
|
1110
|
-
];
|
|
1111
|
-
var GetServiceNetworkServiceAssociationResponse$ = [3, n0, _GSNSARe,
|
|
1112
|
-
0,
|
|
1113
|
-
[_i, _st, _a, _cB, _cA, _sIe, _sN, _sA, _sNIe, _sNN, _sNA, _dE, _cDN, _fM, _fC],
|
|
1114
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, 0, 0, 0]
|
|
1115
|
-
];
|
|
1116
|
-
var GetServiceNetworkVpcAssociationRequest$ = [3, n0, _GSNVAR,
|
|
1117
|
-
0,
|
|
1118
|
-
[_sNVAI],
|
|
1119
|
-
[[0, 1]], 1
|
|
1120
|
-
];
|
|
1121
|
-
var GetServiceNetworkVpcAssociationResponse$ = [3, n0, _GSNVARe,
|
|
1122
|
-
0,
|
|
1123
|
-
[_i, _st, _a, _cB, _cA, _sNIe, _sNN, _sNA, _vIp, _sGI, _pDE, _fM, _fC, _lUA, _dO],
|
|
1124
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 64 | 0, 2, 0, 0, 5, () => DnsOptions$]
|
|
1125
|
-
];
|
|
1126
|
-
var GetServiceRequest$ = [3, n0, _GSR,
|
|
1127
|
-
0,
|
|
1128
|
-
[_sI],
|
|
1129
|
-
[[0, 1]], 1
|
|
1130
|
-
];
|
|
1131
|
-
var GetServiceResponse$ = [3, n0, _GSRe,
|
|
1132
|
-
0,
|
|
1133
|
-
[_i, _n, _a, _cA, _lUA, _dE, _cDN, _cAe, _st, _aT, _fC, _fM],
|
|
1134
|
-
[0, 0, 0, 5, 5, () => DnsEntry$, 0, 0, 0, 0, 0, 0]
|
|
1135
|
-
];
|
|
1136
|
-
var GetTargetGroupRequest$ = [3, n0, _GTGR,
|
|
1137
|
-
0,
|
|
1138
|
-
[_tGI],
|
|
1139
|
-
[[0, 1]], 1
|
|
1140
|
-
];
|
|
1141
|
-
var GetTargetGroupResponse$ = [3, n0, _GTGRe,
|
|
1142
|
-
0,
|
|
1143
|
-
[_i, _a, _n, _ty, _co, _cA, _lUA, _st, _sAe, _fM, _fC],
|
|
1144
|
-
[0, 0, 0, 0, () => TargetGroupConfig$, 5, 5, 0, 64 | 0, 0, 0]
|
|
1145
|
-
];
|
|
1146
|
-
var HeaderMatch$ = [3, n0, _HM,
|
|
1147
|
-
0,
|
|
1148
|
-
[_n, _ma, _cS],
|
|
1149
|
-
[0, () => HeaderMatchType$, 2], 2
|
|
1150
|
-
];
|
|
1151
|
-
var HealthCheckConfig$ = [3, n0, _HCC,
|
|
1152
|
-
0,
|
|
1153
|
-
[_en, _p, _pV, _po, _pa, _hCIS, _hCTS, _hTC, _uTC, _mat],
|
|
1154
|
-
[2, 0, 0, 1, 0, 1, 1, 1, 1, () => Matcher$]
|
|
1155
|
-
];
|
|
1156
|
-
var HttpMatch$ = [3, n0, _HMt,
|
|
1157
|
-
0,
|
|
1158
|
-
[_me, _pM, _hM],
|
|
1159
|
-
[0, () => PathMatch$, () => HeaderMatchList]
|
|
1160
|
-
];
|
|
1161
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1162
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1163
|
-
[_m, _rAS],
|
|
1164
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
1165
|
-
];
|
|
1166
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1167
|
-
var IpResource$ = [3, n0, _IR,
|
|
1168
|
-
0,
|
|
1169
|
-
[_iA],
|
|
1170
|
-
[0]
|
|
1171
|
-
];
|
|
1172
|
-
var ListAccessLogSubscriptionsRequest$ = [3, n0, _LALSR,
|
|
1173
|
-
0,
|
|
1174
|
-
[_rIe, _mR, _nT],
|
|
1175
|
-
[[0, { [_hQ]: _rIe }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1176
|
-
];
|
|
1177
|
-
var ListAccessLogSubscriptionsResponse$ = [3, n0, _LALSRi,
|
|
1178
|
-
0,
|
|
1179
|
-
[_it, _nT],
|
|
1180
|
-
[() => AccessLogSubscriptionList, 0], 1
|
|
1181
|
-
];
|
|
1182
|
-
var ListDomainVerificationsRequest$ = [3, n0, _LDVR,
|
|
1183
|
-
0,
|
|
1184
|
-
[_mR, _nT],
|
|
1185
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1186
|
-
];
|
|
1187
|
-
var ListDomainVerificationsResponse$ = [3, n0, _LDVRi,
|
|
1188
|
-
0,
|
|
1189
|
-
[_it, _nT],
|
|
1190
|
-
[() => DomainVerificationList, 0], 1
|
|
1191
|
-
];
|
|
1192
|
-
var ListenerSummary$ = [3, n0, _LS,
|
|
1193
|
-
0,
|
|
1194
|
-
[_a, _i, _n, _p, _po, _cA, _lUA],
|
|
1195
|
-
[0, 0, 0, 0, 1, 5, 5]
|
|
1196
|
-
];
|
|
1197
|
-
var ListListenersRequest$ = [3, n0, _LLR,
|
|
1198
|
-
0,
|
|
1199
|
-
[_sI, _mR, _nT],
|
|
1200
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1201
|
-
];
|
|
1202
|
-
var ListListenersResponse$ = [3, n0, _LLRi,
|
|
1203
|
-
0,
|
|
1204
|
-
[_it, _nT],
|
|
1205
|
-
[() => ListenerSummaryList, 0], 1
|
|
1206
|
-
];
|
|
1207
|
-
var ListResourceConfigurationsRequest$ = [3, n0, _LRCR,
|
|
1208
|
-
0,
|
|
1209
|
-
[_rGI, _rCGI, _dVI, _mR, _nT],
|
|
1210
|
-
[[0, { [_hQ]: _rGI }], [0, { [_hQ]: _rCGI }], [0, { [_hQ]: _dVI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1211
|
-
];
|
|
1212
|
-
var ListResourceConfigurationsResponse$ = [3, n0, _LRCRi,
|
|
1213
|
-
0,
|
|
1214
|
-
[_it, _nT],
|
|
1215
|
-
[() => ResourceConfigurationSummaryList, 0]
|
|
1216
|
-
];
|
|
1217
|
-
var ListResourceEndpointAssociationsRequest$ = [3, n0, _LREAR,
|
|
1218
|
-
0,
|
|
1219
|
-
[_rCI, _rEAI, _vEI, _vEO, _mR, _nT],
|
|
1220
|
-
[[0, { [_hQ]: _rCI }], [0, { [_hQ]: _rEAI }], [0, { [_hQ]: _vEI }], [0, { [_hQ]: _vEO }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1221
|
-
];
|
|
1222
|
-
var ListResourceEndpointAssociationsResponse$ = [3, n0, _LREARi,
|
|
1223
|
-
0,
|
|
1224
|
-
[_it, _nT],
|
|
1225
|
-
[() => ResourceEndpointAssociationList, 0], 1
|
|
1226
|
-
];
|
|
1227
|
-
var ListResourceGatewaysRequest$ = [3, n0, _LRGR,
|
|
1228
|
-
0,
|
|
1229
|
-
[_mR, _nT],
|
|
1230
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1231
|
-
];
|
|
1232
|
-
var ListResourceGatewaysResponse$ = [3, n0, _LRGRi,
|
|
1233
|
-
0,
|
|
1234
|
-
[_it, _nT],
|
|
1235
|
-
[() => ResourceGatewayList, 0]
|
|
1236
|
-
];
|
|
1237
|
-
var ListRulesRequest$ = [3, n0, _LRR,
|
|
1238
|
-
0,
|
|
1239
|
-
[_sI, _lI, _mR, _nT],
|
|
1240
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1241
|
-
];
|
|
1242
|
-
var ListRulesResponse$ = [3, n0, _LRRi,
|
|
1243
|
-
0,
|
|
1244
|
-
[_it, _nT],
|
|
1245
|
-
[() => RuleSummaryList, 0], 1
|
|
1246
|
-
];
|
|
1247
|
-
var ListServiceNetworkResourceAssociationsRequest$ = [3, n0, _LSNRAR,
|
|
1248
|
-
0,
|
|
1249
|
-
[_sNI, _rCI, _mR, _nT, _iC],
|
|
1250
|
-
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _rCI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [2, { [_hQ]: _iC }]]
|
|
1251
|
-
];
|
|
1252
|
-
var ListServiceNetworkResourceAssociationsResponse$ = [3, n0, _LSNRARi,
|
|
1253
|
-
0,
|
|
1254
|
-
[_it, _nT],
|
|
1255
|
-
[() => ServiceNetworkResourceAssociationList, 0], 1
|
|
1256
|
-
];
|
|
1257
|
-
var ListServiceNetworkServiceAssociationsRequest$ = [3, n0, _LSNSAR,
|
|
1258
|
-
0,
|
|
1259
|
-
[_sNI, _sI, _mR, _nT],
|
|
1260
|
-
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _sI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1261
|
-
];
|
|
1262
|
-
var ListServiceNetworkServiceAssociationsResponse$ = [3, n0, _LSNSARi,
|
|
1263
|
-
0,
|
|
1264
|
-
[_it, _nT],
|
|
1265
|
-
[() => ServiceNetworkServiceAssociationList, 0], 1
|
|
1266
|
-
];
|
|
1267
|
-
var ListServiceNetworksRequest$ = [3, n0, _LSNR,
|
|
1268
|
-
0,
|
|
1269
|
-
[_mR, _nT],
|
|
1270
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1271
|
-
];
|
|
1272
|
-
var ListServiceNetworksResponse$ = [3, n0, _LSNRi,
|
|
1273
|
-
0,
|
|
1274
|
-
[_it, _nT],
|
|
1275
|
-
[() => ServiceNetworkList, 0], 1
|
|
1276
|
-
];
|
|
1277
|
-
var ListServiceNetworkVpcAssociationsRequest$ = [3, n0, _LSNVAR,
|
|
1278
|
-
0,
|
|
1279
|
-
[_sNI, _vI, _mR, _nT],
|
|
1280
|
-
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _vI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1281
|
-
];
|
|
1282
|
-
var ListServiceNetworkVpcAssociationsResponse$ = [3, n0, _LSNVARi,
|
|
1283
|
-
0,
|
|
1284
|
-
[_it, _nT],
|
|
1285
|
-
[() => ServiceNetworkVpcAssociationList, 0], 1
|
|
1286
|
-
];
|
|
1287
|
-
var ListServiceNetworkVpcEndpointAssociationsRequest$ = [3, n0, _LSNVEAR,
|
|
1288
|
-
0,
|
|
1289
|
-
[_sNI, _mR, _nT],
|
|
1290
|
-
[[0, { [_hQ]: _sNI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1291
|
-
];
|
|
1292
|
-
var ListServiceNetworkVpcEndpointAssociationsResponse$ = [3, n0, _LSNVEARi,
|
|
1293
|
-
0,
|
|
1294
|
-
[_it, _nT],
|
|
1295
|
-
[() => ServiceNetworkVpcEndpointAssociationList, 0], 1
|
|
1296
|
-
];
|
|
1297
|
-
var ListServicesRequest$ = [3, n0, _LSR,
|
|
1298
|
-
0,
|
|
1299
|
-
[_mR, _nT],
|
|
1300
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1301
|
-
];
|
|
1302
|
-
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
1303
|
-
0,
|
|
1304
|
-
[_it, _nT],
|
|
1305
|
-
[() => ServiceList, 0]
|
|
1306
|
-
];
|
|
1307
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1308
|
-
0,
|
|
1309
|
-
[_rA],
|
|
1310
|
-
[[0, 1]], 1
|
|
1311
|
-
];
|
|
1312
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1313
|
-
0,
|
|
1314
|
-
[_t],
|
|
1315
|
-
[128 | 0]
|
|
1316
|
-
];
|
|
1317
|
-
var ListTargetGroupsRequest$ = [3, n0, _LTGR,
|
|
1318
|
-
0,
|
|
1319
|
-
[_mR, _nT, _vI, _tGT],
|
|
1320
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _vI }], [0, { [_hQ]: _tGT }]]
|
|
1321
|
-
];
|
|
1322
|
-
var ListTargetGroupsResponse$ = [3, n0, _LTGRi,
|
|
1323
|
-
0,
|
|
1324
|
-
[_it, _nT],
|
|
1325
|
-
[() => TargetGroupList, 0]
|
|
1326
|
-
];
|
|
1327
|
-
var ListTargetsRequest$ = [3, n0, _LTR,
|
|
1328
|
-
0,
|
|
1329
|
-
[_tGI, _mR, _nT, _ta],
|
|
1330
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], () => TargetList], 1
|
|
1331
|
-
];
|
|
1332
|
-
var ListTargetsResponse$ = [3, n0, _LTRi,
|
|
1333
|
-
0,
|
|
1334
|
-
[_it, _nT],
|
|
1335
|
-
[() => TargetSummaryList, 0], 1
|
|
1336
|
-
];
|
|
1337
|
-
var PathMatch$ = [3, n0, _PM,
|
|
1338
|
-
0,
|
|
1339
|
-
[_ma, _cS],
|
|
1340
|
-
[() => PathMatchType$, 2], 1
|
|
1341
|
-
];
|
|
1342
|
-
var PutAuthPolicyRequest$ = [3, n0, _PAPR,
|
|
1343
|
-
0,
|
|
1344
|
-
[_rIe, _pol],
|
|
1345
|
-
[[0, 1], 0], 2
|
|
1346
|
-
];
|
|
1347
|
-
var PutAuthPolicyResponse$ = [3, n0, _PAPRu,
|
|
1348
|
-
0,
|
|
1349
|
-
[_pol, _sta],
|
|
1350
|
-
[0, 0]
|
|
1351
|
-
];
|
|
1352
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1353
|
-
0,
|
|
1354
|
-
[_rA, _pol],
|
|
1355
|
-
[[0, 1], 0], 2
|
|
1356
|
-
];
|
|
1357
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1358
|
-
0,
|
|
1359
|
-
[],
|
|
1360
|
-
[]
|
|
1361
|
-
];
|
|
1362
|
-
var RegisterTargetsRequest$ = [3, n0, _RTR,
|
|
1363
|
-
0,
|
|
1364
|
-
[_tGI, _ta],
|
|
1365
|
-
[[0, 1], () => TargetList], 2
|
|
1366
|
-
];
|
|
1367
|
-
var RegisterTargetsResponse$ = [3, n0, _RTRe,
|
|
1368
|
-
0,
|
|
1369
|
-
[_s, _u],
|
|
1370
|
-
[() => TargetList, () => TargetFailureList]
|
|
1371
|
-
];
|
|
1372
|
-
var ResourceConfigurationSummary$ = [3, n0, _RCS,
|
|
1373
|
-
0,
|
|
1374
|
-
[_i, _n, _a, _rGIe, _rCGIe, _ty, _st, _aM, _cA, _lUA, _cDN, _dVIo, _gD],
|
|
1375
|
-
[0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 0, 0, 0]
|
|
1376
|
-
];
|
|
1377
|
-
var ResourceEndpointAssociationSummary$ = [3, n0, _REAS,
|
|
1378
|
-
0,
|
|
1379
|
-
[_i, _a, _rCIe, _rCA, _rCN, _vEI, _vEO, _cB, _cA],
|
|
1380
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 5]
|
|
1381
|
-
];
|
|
1382
|
-
var ResourceGatewaySummary$ = [3, n0, _RGS,
|
|
1383
|
-
0,
|
|
1384
|
-
[_n, _i, _a, _st, _vI, _sIu, _sGI, _iAT, _iAPE, _cA, _lUA],
|
|
1385
|
-
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 1, 5, 5]
|
|
1386
|
-
];
|
|
1387
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1388
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1389
|
-
[_m, _rI, _rT],
|
|
1390
|
-
[0, 0, 0], 3
|
|
1391
|
-
];
|
|
1392
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1393
|
-
var RuleSummary$ = [3, n0, _RS,
|
|
1394
|
-
0,
|
|
1395
|
-
[_a, _i, _n, _iD, _pr, _cA, _lUA],
|
|
1396
|
-
[0, 0, 0, 2, 1, 5, 5]
|
|
1397
|
-
];
|
|
1398
|
-
var RuleUpdate$ = [3, n0, _RU,
|
|
1399
|
-
0,
|
|
1400
|
-
[_rIu, _ma, _pr, _ac],
|
|
1401
|
-
[0, () => RuleMatch$, 1, () => RuleAction$], 1
|
|
1402
|
-
];
|
|
1403
|
-
var RuleUpdateFailure$ = [3, n0, _RUF,
|
|
1404
|
-
0,
|
|
1405
|
-
[_rIu, _fC, _fM],
|
|
1406
|
-
[0, 0, 0]
|
|
1407
|
-
];
|
|
1408
|
-
var RuleUpdateSuccess$ = [3, n0, _RUS,
|
|
1409
|
-
0,
|
|
1410
|
-
[_a, _i, _n, _iD, _ma, _pr, _ac],
|
|
1411
|
-
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$]
|
|
1412
|
-
];
|
|
1413
|
-
var ServiceNetworkEndpointAssociation$ = [3, n0, _SNEA,
|
|
1414
|
-
0,
|
|
1415
|
-
[_vEI, _vIp, _vEOI, _i, _sta, _sNA, _cA],
|
|
1416
|
-
[0, 0, 0, 0, 0, 0, 5]
|
|
1417
|
-
];
|
|
1418
|
-
var ServiceNetworkResourceAssociationSummary$ = [3, n0, _SNRAS,
|
|
1419
|
-
0,
|
|
1420
|
-
[_i, _a, _st, _cB, _cA, _rCIe, _rCA, _rCN, _sNIe, _sNA, _sNN, _dE, _pDEr, _iMA, _fC, _pDE],
|
|
1421
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, () => DnsEntry$, 2, 0, 2]
|
|
1422
|
-
];
|
|
1423
|
-
var ServiceNetworkServiceAssociationSummary$ = [3, n0, _SNSAS,
|
|
1424
|
-
0,
|
|
1425
|
-
[_i, _st, _a, _cB, _cA, _sIe, _sN, _sA, _sNIe, _sNN, _sNA, _dE, _cDN],
|
|
1426
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, 0]
|
|
1427
|
-
];
|
|
1428
|
-
var ServiceNetworkSummary$ = [3, n0, _SNS,
|
|
1429
|
-
0,
|
|
1430
|
-
[_i, _n, _a, _cA, _lUA, _nOAVPC, _nOAS, _nOARC],
|
|
1431
|
-
[0, 0, 0, 5, 5, 1, 1, 1]
|
|
1432
|
-
];
|
|
1433
|
-
var ServiceNetworkVpcAssociationSummary$ = [3, n0, _SNVAS,
|
|
1434
|
-
0,
|
|
1435
|
-
[_i, _a, _st, _cB, _cA, _sNIe, _sNN, _sNA, _pDE, _dO, _vIp, _lUA],
|
|
1436
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 2, () => DnsOptions$, 0, 5]
|
|
1437
|
-
];
|
|
1438
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1439
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1440
|
-
[_m, _rT, _sCe, _qC, _rI],
|
|
1441
|
-
[0, 0, 0, 0, 0], 4
|
|
1442
|
-
];
|
|
1443
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1444
|
-
var ServiceSummary$ = [3, n0, _SS,
|
|
1445
|
-
0,
|
|
1446
|
-
[_i, _n, _a, _cA, _lUA, _dE, _cDN, _st],
|
|
1447
|
-
[0, 0, 0, 5, 5, () => DnsEntry$, 0, 0]
|
|
1448
|
-
];
|
|
1449
|
-
var SharingConfig$ = [3, n0, _SC,
|
|
1450
|
-
0,
|
|
1451
|
-
[_en],
|
|
1452
|
-
[2]
|
|
1453
|
-
];
|
|
1454
|
-
var StartDomainVerificationRequest$ = [3, n0, _SDVR,
|
|
1455
|
-
0,
|
|
1456
|
-
[_dN, _cT, _t],
|
|
1457
|
-
[0, [0, 4], 128 | 0], 1
|
|
1458
|
-
];
|
|
1459
|
-
var StartDomainVerificationResponse$ = [3, n0, _SDVRt,
|
|
1460
|
-
0,
|
|
1461
|
-
[_i, _a, _dN, _st, _tMC],
|
|
1462
|
-
[0, 0, 0, 0, () => TxtMethodConfig$], 4
|
|
1463
|
-
];
|
|
1464
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1465
|
-
0,
|
|
1466
|
-
[_rA, _t],
|
|
1467
|
-
[[0, 1], 128 | 0], 2
|
|
1468
|
-
];
|
|
1469
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1470
|
-
0,
|
|
1471
|
-
[],
|
|
1472
|
-
[]
|
|
1473
|
-
];
|
|
1474
|
-
var Target$ = [3, n0, _T,
|
|
1475
|
-
0,
|
|
1476
|
-
[_i, _po],
|
|
1477
|
-
[0, 1], 1
|
|
1478
|
-
];
|
|
1479
|
-
var TargetFailure$ = [3, n0, _TF,
|
|
1480
|
-
0,
|
|
1481
|
-
[_i, _po, _fC, _fM],
|
|
1482
|
-
[0, 1, 0, 0]
|
|
1483
|
-
];
|
|
1484
|
-
var TargetGroupConfig$ = [3, n0, _TGC,
|
|
1485
|
-
0,
|
|
1486
|
-
[_po, _p, _pV, _iAT, _vI, _hC, _lESV],
|
|
1487
|
-
[1, 0, 0, 0, 0, () => HealthCheckConfig$, 0]
|
|
1488
|
-
];
|
|
1489
|
-
var TargetGroupSummary$ = [3, n0, _TGS,
|
|
1490
|
-
0,
|
|
1491
|
-
[_i, _a, _n, _ty, _cA, _po, _p, _iAT, _vI, _lUA, _st, _sAe, _lESV],
|
|
1492
|
-
[0, 0, 0, 0, 5, 1, 0, 0, 0, 5, 0, 64 | 0, 0]
|
|
1493
|
-
];
|
|
1494
|
-
var TargetSummary$ = [3, n0, _TS,
|
|
1495
|
-
0,
|
|
1496
|
-
[_i, _po, _st, _rC],
|
|
1497
|
-
[0, 1, 0, 0]
|
|
1498
|
-
];
|
|
1499
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1500
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1501
|
-
[_m, _sCe, _qC, _rAS],
|
|
1502
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
1503
|
-
];
|
|
1504
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1505
|
-
var TxtMethodConfig$ = [3, n0, _TMC,
|
|
1506
|
-
0,
|
|
1507
|
-
[_v, _n],
|
|
1508
|
-
[0, 0], 2
|
|
1509
|
-
];
|
|
1510
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1511
|
-
0,
|
|
1512
|
-
[_rA, _tK],
|
|
1513
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1514
|
-
];
|
|
1515
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1516
|
-
0,
|
|
1517
|
-
[],
|
|
1518
|
-
[]
|
|
1519
|
-
];
|
|
1520
|
-
var UpdateAccessLogSubscriptionRequest$ = [3, n0, _UALSR,
|
|
1521
|
-
0,
|
|
1522
|
-
[_aLSI, _dA],
|
|
1523
|
-
[[0, 1], 0], 2
|
|
1524
|
-
];
|
|
1525
|
-
var UpdateAccessLogSubscriptionResponse$ = [3, n0, _UALSRp,
|
|
1526
|
-
0,
|
|
1527
|
-
[_i, _a, _rI, _rA, _dA],
|
|
1528
|
-
[0, 0, 0, 0, 0], 5
|
|
1529
|
-
];
|
|
1530
|
-
var UpdateListenerRequest$ = [3, n0, _ULR,
|
|
1531
|
-
0,
|
|
1532
|
-
[_sI, _lI, _dAe],
|
|
1533
|
-
[[0, 1], [0, 1], () => RuleAction$], 3
|
|
1534
|
-
];
|
|
1535
|
-
var UpdateListenerResponse$ = [3, n0, _ULRp,
|
|
1536
|
-
0,
|
|
1537
|
-
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe],
|
|
1538
|
-
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$]
|
|
1539
|
-
];
|
|
1540
|
-
var UpdateResourceConfigurationRequest$ = [3, n0, _URCR,
|
|
1541
|
-
0,
|
|
1542
|
-
[_rCI, _rCD, _aATSSN, _pR],
|
|
1543
|
-
[[0, 1], () => ResourceConfigurationDefinition$, 2, 64 | 0], 1
|
|
1544
|
-
];
|
|
1545
|
-
var UpdateResourceConfigurationResponse$ = [3, n0, _URCRp,
|
|
1546
|
-
0,
|
|
1547
|
-
[_i, _n, _a, _rGIe, _rCGIe, _ty, _pR, _aATSSN, _p, _st, _rCD],
|
|
1548
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 2, 0, 0, () => ResourceConfigurationDefinition$]
|
|
1549
|
-
];
|
|
1550
|
-
var UpdateResourceGatewayRequest$ = [3, n0, _URGR,
|
|
1551
|
-
0,
|
|
1552
|
-
[_rGI, _sGI],
|
|
1553
|
-
[[0, 1], 64 | 0], 1
|
|
1554
|
-
];
|
|
1555
|
-
var UpdateResourceGatewayResponse$ = [3, n0, _URGRp,
|
|
1556
|
-
0,
|
|
1557
|
-
[_n, _i, _a, _st, _vIp, _sIu, _sGI, _iAT],
|
|
1558
|
-
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0]
|
|
1559
|
-
];
|
|
1560
|
-
var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
1561
|
-
0,
|
|
1562
|
-
[_sI, _lI, _rIu, _ma, _pr, _ac],
|
|
1563
|
-
[[0, 1], [0, 1], [0, 1], () => RuleMatch$, 1, () => RuleAction$], 3
|
|
1564
|
-
];
|
|
1565
|
-
var UpdateRuleResponse$ = [3, n0, _URRpd,
|
|
1566
|
-
0,
|
|
1567
|
-
[_a, _i, _n, _iD, _ma, _pr, _ac],
|
|
1568
|
-
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$]
|
|
1569
|
-
];
|
|
1570
|
-
var UpdateServiceNetworkRequest$ = [3, n0, _USNR,
|
|
1571
|
-
0,
|
|
1572
|
-
[_sNI, _aT],
|
|
1573
|
-
[[0, 1], 0], 2
|
|
1574
|
-
];
|
|
1575
|
-
var UpdateServiceNetworkResponse$ = [3, n0, _USNRp,
|
|
1576
|
-
0,
|
|
1577
|
-
[_i, _n, _a, _aT],
|
|
1578
|
-
[0, 0, 0, 0]
|
|
1579
|
-
];
|
|
1580
|
-
var UpdateServiceNetworkVpcAssociationRequest$ = [3, n0, _USNVAR,
|
|
1581
|
-
0,
|
|
1582
|
-
[_sNVAI, _sGI],
|
|
1583
|
-
[[0, 1], 64 | 0], 2
|
|
1584
|
-
];
|
|
1585
|
-
var UpdateServiceNetworkVpcAssociationResponse$ = [3, n0, _USNVARp,
|
|
1586
|
-
0,
|
|
1587
|
-
[_i, _a, _st, _cB, _sGI],
|
|
1588
|
-
[0, 0, 0, 0, 64 | 0]
|
|
1589
|
-
];
|
|
1590
|
-
var UpdateServiceRequest$ = [3, n0, _USR,
|
|
1591
|
-
0,
|
|
1592
|
-
[_sI, _cAe, _aT],
|
|
1593
|
-
[[0, 1], 0, 0], 1
|
|
1594
|
-
];
|
|
1595
|
-
var UpdateServiceResponse$ = [3, n0, _USRp,
|
|
1596
|
-
0,
|
|
1597
|
-
[_i, _a, _n, _cDN, _cAe, _aT],
|
|
1598
|
-
[0, 0, 0, 0, 0, 0]
|
|
1599
|
-
];
|
|
1600
|
-
var UpdateTargetGroupRequest$ = [3, n0, _UTGR,
|
|
1601
|
-
0,
|
|
1602
|
-
[_tGI, _hC],
|
|
1603
|
-
[[0, 1], () => HealthCheckConfig$], 2
|
|
1604
|
-
];
|
|
1605
|
-
var UpdateTargetGroupResponse$ = [3, n0, _UTGRp,
|
|
1606
|
-
0,
|
|
1607
|
-
[_i, _a, _n, _ty, _co, _st],
|
|
1608
|
-
[0, 0, 0, 0, () => TargetGroupConfig$, 0]
|
|
1609
|
-
];
|
|
1610
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1611
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1612
|
-
[_m, _re, _fL],
|
|
1613
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
1614
|
-
];
|
|
1615
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1616
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1617
|
-
0,
|
|
1618
|
-
[_n, _m],
|
|
1619
|
-
[0, 0], 2
|
|
1620
|
-
];
|
|
1621
|
-
var WeightedTargetGroup$ = [3, n0, _WTG,
|
|
1622
|
-
0,
|
|
1623
|
-
[_tGI, _w],
|
|
1624
|
-
[0, 1], 1
|
|
1625
|
-
];
|
|
1626
|
-
var VPCLatticeServiceException$ = [-3, _sm, "VPCLatticeServiceException", 0, [], []];
|
|
1627
|
-
schema.TypeRegistry.for(_sm).registerError(VPCLatticeServiceException$, VPCLatticeServiceException);
|
|
1628
|
-
var AccessLogSubscriptionList = [1, n0, _ALSL,
|
|
1629
|
-
0, () => AccessLogSubscriptionSummary$
|
|
1630
|
-
];
|
|
1631
|
-
var DomainVerificationList = [1, n0, _DVL,
|
|
1632
|
-
0, () => DomainVerificationSummary$
|
|
1633
|
-
];
|
|
1634
|
-
var HeaderMatchList = [1, n0, _HML,
|
|
1635
|
-
0, () => HeaderMatch$
|
|
1636
|
-
];
|
|
1637
|
-
var ListenerSummaryList = [1, n0, _LSL,
|
|
1638
|
-
0, () => ListenerSummary$
|
|
1639
|
-
];
|
|
1640
|
-
var ResourceConfigurationSummaryList = [1, n0, _RCSL,
|
|
1641
|
-
0, () => ResourceConfigurationSummary$
|
|
1642
|
-
];
|
|
1643
|
-
var ResourceEndpointAssociationList = [1, n0, _REAL,
|
|
1644
|
-
0, () => ResourceEndpointAssociationSummary$
|
|
1645
|
-
];
|
|
1646
|
-
var ResourceGatewayList = [1, n0, _RGL,
|
|
1647
|
-
0, () => ResourceGatewaySummary$
|
|
1648
|
-
];
|
|
1649
|
-
var RuleSummaryList = [1, n0, _RSL,
|
|
1650
|
-
0, () => RuleSummary$
|
|
1651
|
-
];
|
|
1652
|
-
var RuleUpdateFailureList = [1, n0, _RUFL,
|
|
1653
|
-
0, () => RuleUpdateFailure$
|
|
1654
|
-
];
|
|
1655
|
-
var RuleUpdateList = [1, n0, _RUL,
|
|
1656
|
-
0, () => RuleUpdate$
|
|
1657
|
-
];
|
|
1658
|
-
var RuleUpdateSuccessList = [1, n0, _RUSL,
|
|
1659
|
-
0, () => RuleUpdateSuccess$
|
|
1660
|
-
];
|
|
1661
|
-
var ServiceList = [1, n0, _SL,
|
|
1662
|
-
0, () => ServiceSummary$
|
|
1663
|
-
];
|
|
1664
|
-
var ServiceNetworkList = [1, n0, _SNL,
|
|
1665
|
-
0, () => ServiceNetworkSummary$
|
|
1666
|
-
];
|
|
1667
|
-
var ServiceNetworkResourceAssociationList = [1, n0, _SNRAL,
|
|
1668
|
-
0, () => ServiceNetworkResourceAssociationSummary$
|
|
1669
|
-
];
|
|
1670
|
-
var ServiceNetworkServiceAssociationList = [1, n0, _SNSAL,
|
|
1671
|
-
0, () => ServiceNetworkServiceAssociationSummary$
|
|
1672
|
-
];
|
|
1673
|
-
var ServiceNetworkVpcAssociationList = [1, n0, _SNVAL,
|
|
1674
|
-
0, () => ServiceNetworkVpcAssociationSummary$
|
|
1675
|
-
];
|
|
1676
|
-
var ServiceNetworkVpcEndpointAssociationList = [1, n0, _SNVEAL,
|
|
1677
|
-
0, () => ServiceNetworkEndpointAssociation$
|
|
1678
|
-
];
|
|
1679
|
-
var TargetFailureList = [1, n0, _TFL,
|
|
1680
|
-
0, () => TargetFailure$
|
|
1681
|
-
];
|
|
1682
|
-
var TargetGroupList = [1, n0, _TGL,
|
|
1683
|
-
0, () => TargetGroupSummary$
|
|
1684
|
-
];
|
|
1685
|
-
var TargetList = [1, n0, _TL,
|
|
1686
|
-
0, () => Target$
|
|
1687
|
-
];
|
|
1688
|
-
var TargetSummaryList = [1, n0, _TSL,
|
|
1689
|
-
0, () => TargetSummary$
|
|
1690
|
-
];
|
|
1691
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1692
|
-
0, () => ValidationExceptionField$
|
|
1693
|
-
];
|
|
1694
|
-
var WeightedTargetGroupList = [1, n0, _WTGL,
|
|
1695
|
-
0, () => WeightedTargetGroup$
|
|
1696
|
-
];
|
|
1697
|
-
var HeaderMatchType$ = [4, n0, _HMT,
|
|
1698
|
-
0,
|
|
1699
|
-
[_ex, _pre, _con],
|
|
1700
|
-
[0, 0, 0]
|
|
1701
|
-
];
|
|
1702
|
-
var Matcher$ = [4, n0, _M,
|
|
1703
|
-
0,
|
|
1704
|
-
[_hCt],
|
|
1705
|
-
[0]
|
|
1706
|
-
];
|
|
1707
|
-
var PathMatchType$ = [4, n0, _PMT,
|
|
1708
|
-
0,
|
|
1709
|
-
[_ex, _pre],
|
|
1710
|
-
[0, 0]
|
|
1711
|
-
];
|
|
1712
|
-
var ResourceConfigurationDefinition$ = [4, n0, _RCD,
|
|
1713
|
-
0,
|
|
1714
|
-
[_dR, _iR, _aR],
|
|
1715
|
-
[() => DnsResource$, () => IpResource$, () => ArnResource$]
|
|
1716
|
-
];
|
|
1717
|
-
var RuleAction$ = [4, n0, _RAu,
|
|
1718
|
-
0,
|
|
1719
|
-
[_f, _fRi],
|
|
1720
|
-
[() => ForwardAction$, () => FixedResponseAction$]
|
|
1721
|
-
];
|
|
1722
|
-
var RuleMatch$ = [4, n0, _RM,
|
|
1723
|
-
0,
|
|
1724
|
-
[_hMt],
|
|
1725
|
-
[() => HttpMatch$]
|
|
1726
|
-
];
|
|
1727
|
-
var BatchUpdateRule$ = [9, n0, _BUR,
|
|
1728
|
-
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 200] }, () => BatchUpdateRuleRequest$, () => BatchUpdateRuleResponse$
|
|
1729
|
-
];
|
|
1730
|
-
var CreateAccessLogSubscription$ = [9, n0, _CALS,
|
|
1731
|
-
{ [_h]: ["POST", "/accesslogsubscriptions", 201] }, () => CreateAccessLogSubscriptionRequest$, () => CreateAccessLogSubscriptionResponse$
|
|
1732
|
-
];
|
|
1733
|
-
var CreateListener$ = [9, n0, _CL,
|
|
1734
|
-
{ [_h]: ["POST", "/services/{serviceIdentifier}/listeners", 201] }, () => CreateListenerRequest$, () => CreateListenerResponse$
|
|
1735
|
-
];
|
|
1736
|
-
var CreateResourceConfiguration$ = [9, n0, _CRC,
|
|
1737
|
-
{ [_h]: ["POST", "/resourceconfigurations", 201] }, () => CreateResourceConfigurationRequest$, () => CreateResourceConfigurationResponse$
|
|
1738
|
-
];
|
|
1739
|
-
var CreateResourceGateway$ = [9, n0, _CRG,
|
|
1740
|
-
{ [_h]: ["POST", "/resourcegateways", 201] }, () => CreateResourceGatewayRequest$, () => CreateResourceGatewayResponse$
|
|
1741
|
-
];
|
|
1742
|
-
var CreateRule$ = [9, n0, _CR,
|
|
1743
|
-
{ [_h]: ["POST", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 201] }, () => CreateRuleRequest$, () => CreateRuleResponse$
|
|
1744
|
-
];
|
|
1745
|
-
var CreateService$ = [9, n0, _CS,
|
|
1746
|
-
{ [_h]: ["POST", "/services", 201] }, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
1747
|
-
];
|
|
1748
|
-
var CreateServiceNetwork$ = [9, n0, _CSN,
|
|
1749
|
-
{ [_h]: ["POST", "/servicenetworks", 201] }, () => CreateServiceNetworkRequest$, () => CreateServiceNetworkResponse$
|
|
1750
|
-
];
|
|
1751
|
-
var CreateServiceNetworkResourceAssociation$ = [9, n0, _CSNRA,
|
|
1752
|
-
{ [_h]: ["POST", "/servicenetworkresourceassociations", 201] }, () => CreateServiceNetworkResourceAssociationRequest$, () => CreateServiceNetworkResourceAssociationResponse$
|
|
1753
|
-
];
|
|
1754
|
-
var CreateServiceNetworkServiceAssociation$ = [9, n0, _CSNSA,
|
|
1755
|
-
{ [_h]: ["POST", "/servicenetworkserviceassociations", 200] }, () => CreateServiceNetworkServiceAssociationRequest$, () => CreateServiceNetworkServiceAssociationResponse$
|
|
1756
|
-
];
|
|
1757
|
-
var CreateServiceNetworkVpcAssociation$ = [9, n0, _CSNVA,
|
|
1758
|
-
{ [_h]: ["POST", "/servicenetworkvpcassociations", 200] }, () => CreateServiceNetworkVpcAssociationRequest$, () => CreateServiceNetworkVpcAssociationResponse$
|
|
1759
|
-
];
|
|
1760
|
-
var CreateTargetGroup$ = [9, n0, _CTG,
|
|
1761
|
-
{ [_h]: ["POST", "/targetgroups", 201] }, () => CreateTargetGroupRequest$, () => CreateTargetGroupResponse$
|
|
1762
|
-
];
|
|
1763
|
-
var DeleteAccessLogSubscription$ = [9, n0, _DALS,
|
|
1764
|
-
{ [_h]: ["DELETE", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 204] }, () => DeleteAccessLogSubscriptionRequest$, () => DeleteAccessLogSubscriptionResponse$
|
|
1765
|
-
];
|
|
1766
|
-
var DeleteAuthPolicy$ = [9, n0, _DAP,
|
|
1767
|
-
{ [_h]: ["DELETE", "/authpolicy/{resourceIdentifier}", 204] }, () => DeleteAuthPolicyRequest$, () => DeleteAuthPolicyResponse$
|
|
1768
|
-
];
|
|
1769
|
-
var DeleteDomainVerification$ = [9, n0, _DDV,
|
|
1770
|
-
{ [_h]: ["DELETE", "/domainverifications/{domainVerificationIdentifier}", 200] }, () => DeleteDomainVerificationRequest$, () => DeleteDomainVerificationResponse$
|
|
1771
|
-
];
|
|
1772
|
-
var DeleteListener$ = [9, n0, _DL,
|
|
1773
|
-
{ [_h]: ["DELETE", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 204] }, () => DeleteListenerRequest$, () => DeleteListenerResponse$
|
|
1774
|
-
];
|
|
1775
|
-
var DeleteResourceConfiguration$ = [9, n0, _DRC,
|
|
1776
|
-
{ [_h]: ["DELETE", "/resourceconfigurations/{resourceConfigurationIdentifier}", 204] }, () => DeleteResourceConfigurationRequest$, () => DeleteResourceConfigurationResponse$
|
|
1777
|
-
];
|
|
1778
|
-
var DeleteResourceEndpointAssociation$ = [9, n0, _DREA,
|
|
1779
|
-
{ [_h]: ["DELETE", "/resourceendpointassociations/{resourceEndpointAssociationIdentifier}", 200] }, () => DeleteResourceEndpointAssociationRequest$, () => DeleteResourceEndpointAssociationResponse$
|
|
1780
|
-
];
|
|
1781
|
-
var DeleteResourceGateway$ = [9, n0, _DRG,
|
|
1782
|
-
{ [_h]: ["DELETE", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => DeleteResourceGatewayRequest$, () => DeleteResourceGatewayResponse$
|
|
1783
|
-
];
|
|
1784
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1785
|
-
{ [_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204] }, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
1786
|
-
];
|
|
1787
|
-
var DeleteRule$ = [9, n0, _DRe,
|
|
1788
|
-
{ [_h]: ["DELETE", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 204] }, () => DeleteRuleRequest$, () => DeleteRuleResponse$
|
|
1789
|
-
];
|
|
1790
|
-
var DeleteService$ = [9, n0, _DS,
|
|
1791
|
-
{ [_h]: ["DELETE", "/services/{serviceIdentifier}", 200] }, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
1792
|
-
];
|
|
1793
|
-
var DeleteServiceNetwork$ = [9, n0, _DSN,
|
|
1794
|
-
{ [_h]: ["DELETE", "/servicenetworks/{serviceNetworkIdentifier}", 204] }, () => DeleteServiceNetworkRequest$, () => DeleteServiceNetworkResponse$
|
|
1795
|
-
];
|
|
1796
|
-
var DeleteServiceNetworkResourceAssociation$ = [9, n0, _DSNRA,
|
|
1797
|
-
{ [_h]: ["DELETE", "/servicenetworkresourceassociations/{serviceNetworkResourceAssociationIdentifier}", 200] }, () => DeleteServiceNetworkResourceAssociationRequest$, () => DeleteServiceNetworkResourceAssociationResponse$
|
|
1798
|
-
];
|
|
1799
|
-
var DeleteServiceNetworkServiceAssociation$ = [9, n0, _DSNSA,
|
|
1800
|
-
{ [_h]: ["DELETE", "/servicenetworkserviceassociations/{serviceNetworkServiceAssociationIdentifier}", 200] }, () => DeleteServiceNetworkServiceAssociationRequest$, () => DeleteServiceNetworkServiceAssociationResponse$
|
|
1801
|
-
];
|
|
1802
|
-
var DeleteServiceNetworkVpcAssociation$ = [9, n0, _DSNVA,
|
|
1803
|
-
{ [_h]: ["DELETE", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => DeleteServiceNetworkVpcAssociationRequest$, () => DeleteServiceNetworkVpcAssociationResponse$
|
|
1804
|
-
];
|
|
1805
|
-
var DeleteTargetGroup$ = [9, n0, _DTG,
|
|
1806
|
-
{ [_h]: ["DELETE", "/targetgroups/{targetGroupIdentifier}", 200] }, () => DeleteTargetGroupRequest$, () => DeleteTargetGroupResponse$
|
|
1807
|
-
];
|
|
1808
|
-
var DeregisterTargets$ = [9, n0, _DT,
|
|
1809
|
-
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/deregistertargets", 200] }, () => DeregisterTargetsRequest$, () => DeregisterTargetsResponse$
|
|
1810
|
-
];
|
|
1811
|
-
var GetAccessLogSubscription$ = [9, n0, _GALS,
|
|
1812
|
-
{ [_h]: ["GET", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 200] }, () => GetAccessLogSubscriptionRequest$, () => GetAccessLogSubscriptionResponse$
|
|
1813
|
-
];
|
|
1814
|
-
var GetAuthPolicy$ = [9, n0, _GAP,
|
|
1815
|
-
{ [_h]: ["GET", "/authpolicy/{resourceIdentifier}", 200] }, () => GetAuthPolicyRequest$, () => GetAuthPolicyResponse$
|
|
1816
|
-
];
|
|
1817
|
-
var GetDomainVerification$ = [9, n0, _GDV,
|
|
1818
|
-
{ [_h]: ["GET", "/domainverifications/{domainVerificationIdentifier}", 200] }, () => GetDomainVerificationRequest$, () => GetDomainVerificationResponse$
|
|
1819
|
-
];
|
|
1820
|
-
var GetListener$ = [9, n0, _GL,
|
|
1821
|
-
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 200] }, () => GetListenerRequest$, () => GetListenerResponse$
|
|
1822
|
-
];
|
|
1823
|
-
var GetResourceConfiguration$ = [9, n0, _GRC,
|
|
1824
|
-
{ [_h]: ["GET", "/resourceconfigurations/{resourceConfigurationIdentifier}", 200] }, () => GetResourceConfigurationRequest$, () => GetResourceConfigurationResponse$
|
|
1825
|
-
];
|
|
1826
|
-
var GetResourceGateway$ = [9, n0, _GRG,
|
|
1827
|
-
{ [_h]: ["GET", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => GetResourceGatewayRequest$, () => GetResourceGatewayResponse$
|
|
1828
|
-
];
|
|
1829
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
1830
|
-
{ [_h]: ["GET", "/resourcepolicy/{resourceArn}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
1831
|
-
];
|
|
1832
|
-
var GetRule$ = [9, n0, _GR,
|
|
1833
|
-
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 200] }, () => GetRuleRequest$, () => GetRuleResponse$
|
|
1834
|
-
];
|
|
1835
|
-
var GetService$ = [9, n0, _GS,
|
|
1836
|
-
{ [_h]: ["GET", "/services/{serviceIdentifier}", 200] }, () => GetServiceRequest$, () => GetServiceResponse$
|
|
1837
|
-
];
|
|
1838
|
-
var GetServiceNetwork$ = [9, n0, _GSN,
|
|
1839
|
-
{ [_h]: ["GET", "/servicenetworks/{serviceNetworkIdentifier}", 200] }, () => GetServiceNetworkRequest$, () => GetServiceNetworkResponse$
|
|
1840
|
-
];
|
|
1841
|
-
var GetServiceNetworkResourceAssociation$ = [9, n0, _GSNRA,
|
|
1842
|
-
{ [_h]: ["GET", "/servicenetworkresourceassociations/{serviceNetworkResourceAssociationIdentifier}", 200] }, () => GetServiceNetworkResourceAssociationRequest$, () => GetServiceNetworkResourceAssociationResponse$
|
|
1843
|
-
];
|
|
1844
|
-
var GetServiceNetworkServiceAssociation$ = [9, n0, _GSNSA,
|
|
1845
|
-
{ [_h]: ["GET", "/servicenetworkserviceassociations/{serviceNetworkServiceAssociationIdentifier}", 200] }, () => GetServiceNetworkServiceAssociationRequest$, () => GetServiceNetworkServiceAssociationResponse$
|
|
1846
|
-
];
|
|
1847
|
-
var GetServiceNetworkVpcAssociation$ = [9, n0, _GSNVA,
|
|
1848
|
-
{ [_h]: ["GET", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => GetServiceNetworkVpcAssociationRequest$, () => GetServiceNetworkVpcAssociationResponse$
|
|
1849
|
-
];
|
|
1850
|
-
var GetTargetGroup$ = [9, n0, _GTG,
|
|
1851
|
-
{ [_h]: ["GET", "/targetgroups/{targetGroupIdentifier}", 200] }, () => GetTargetGroupRequest$, () => GetTargetGroupResponse$
|
|
1852
|
-
];
|
|
1853
|
-
var ListAccessLogSubscriptions$ = [9, n0, _LALS,
|
|
1854
|
-
{ [_h]: ["GET", "/accesslogsubscriptions", 200] }, () => ListAccessLogSubscriptionsRequest$, () => ListAccessLogSubscriptionsResponse$
|
|
1855
|
-
];
|
|
1856
|
-
var ListDomainVerifications$ = [9, n0, _LDV,
|
|
1857
|
-
{ [_h]: ["GET", "/domainverifications", 200] }, () => ListDomainVerificationsRequest$, () => ListDomainVerificationsResponse$
|
|
1858
|
-
];
|
|
1859
|
-
var ListListeners$ = [9, n0, _LL,
|
|
1860
|
-
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners", 200] }, () => ListListenersRequest$, () => ListListenersResponse$
|
|
1861
|
-
];
|
|
1862
|
-
var ListResourceConfigurations$ = [9, n0, _LRC,
|
|
1863
|
-
{ [_h]: ["GET", "/resourceconfigurations", 200] }, () => ListResourceConfigurationsRequest$, () => ListResourceConfigurationsResponse$
|
|
1864
|
-
];
|
|
1865
|
-
var ListResourceEndpointAssociations$ = [9, n0, _LREA,
|
|
1866
|
-
{ [_h]: ["GET", "/resourceendpointassociations", 200] }, () => ListResourceEndpointAssociationsRequest$, () => ListResourceEndpointAssociationsResponse$
|
|
1867
|
-
];
|
|
1868
|
-
var ListResourceGateways$ = [9, n0, _LRG,
|
|
1869
|
-
{ [_h]: ["GET", "/resourcegateways", 200] }, () => ListResourceGatewaysRequest$, () => ListResourceGatewaysResponse$
|
|
1870
|
-
];
|
|
1871
|
-
var ListRules$ = [9, n0, _LR,
|
|
1872
|
-
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 200] }, () => ListRulesRequest$, () => ListRulesResponse$
|
|
1873
|
-
];
|
|
1874
|
-
var ListServiceNetworkResourceAssociations$ = [9, n0, _LSNRA,
|
|
1875
|
-
{ [_h]: ["GET", "/servicenetworkresourceassociations", 200] }, () => ListServiceNetworkResourceAssociationsRequest$, () => ListServiceNetworkResourceAssociationsResponse$
|
|
1876
|
-
];
|
|
1877
|
-
var ListServiceNetworks$ = [9, n0, _LSN,
|
|
1878
|
-
{ [_h]: ["GET", "/servicenetworks", 200] }, () => ListServiceNetworksRequest$, () => ListServiceNetworksResponse$
|
|
1879
|
-
];
|
|
1880
|
-
var ListServiceNetworkServiceAssociations$ = [9, n0, _LSNSA,
|
|
1881
|
-
{ [_h]: ["GET", "/servicenetworkserviceassociations", 200] }, () => ListServiceNetworkServiceAssociationsRequest$, () => ListServiceNetworkServiceAssociationsResponse$
|
|
1882
|
-
];
|
|
1883
|
-
var ListServiceNetworkVpcAssociations$ = [9, n0, _LSNVA,
|
|
1884
|
-
{ [_h]: ["GET", "/servicenetworkvpcassociations", 200] }, () => ListServiceNetworkVpcAssociationsRequest$, () => ListServiceNetworkVpcAssociationsResponse$
|
|
1885
|
-
];
|
|
1886
|
-
var ListServiceNetworkVpcEndpointAssociations$ = [9, n0, _LSNVEA,
|
|
1887
|
-
{ [_h]: ["GET", "/servicenetworkvpcendpointassociations", 200] }, () => ListServiceNetworkVpcEndpointAssociationsRequest$, () => ListServiceNetworkVpcEndpointAssociationsResponse$
|
|
1888
|
-
];
|
|
1889
|
-
var ListServices$ = [9, n0, _LSi,
|
|
1890
|
-
{ [_h]: ["GET", "/services", 200] }, () => ListServicesRequest$, () => ListServicesResponse$
|
|
1891
|
-
];
|
|
1892
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1893
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1894
|
-
];
|
|
1895
|
-
var ListTargetGroups$ = [9, n0, _LTG,
|
|
1896
|
-
{ [_h]: ["GET", "/targetgroups", 200] }, () => ListTargetGroupsRequest$, () => ListTargetGroupsResponse$
|
|
1897
|
-
];
|
|
1898
|
-
var ListTargets$ = [9, n0, _LT,
|
|
1899
|
-
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/listtargets", 200] }, () => ListTargetsRequest$, () => ListTargetsResponse$
|
|
1900
|
-
];
|
|
1901
|
-
var PutAuthPolicy$ = [9, n0, _PAP,
|
|
1902
|
-
{ [_h]: ["PUT", "/authpolicy/{resourceIdentifier}", 200] }, () => PutAuthPolicyRequest$, () => PutAuthPolicyResponse$
|
|
1903
|
-
];
|
|
1904
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1905
|
-
{ [_h]: ["PUT", "/resourcepolicy/{resourceArn}", 200] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1906
|
-
];
|
|
1907
|
-
var RegisterTargets$ = [9, n0, _RT,
|
|
1908
|
-
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/registertargets", 200] }, () => RegisterTargetsRequest$, () => RegisterTargetsResponse$
|
|
1909
|
-
];
|
|
1910
|
-
var StartDomainVerification$ = [9, n0, _SDV,
|
|
1911
|
-
{ [_h]: ["POST", "/domainverifications", 201] }, () => StartDomainVerificationRequest$, () => StartDomainVerificationResponse$
|
|
1912
|
-
];
|
|
1913
|
-
var TagResource$ = [9, n0, _TR,
|
|
1914
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1915
|
-
];
|
|
1916
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1917
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1918
|
-
];
|
|
1919
|
-
var UpdateAccessLogSubscription$ = [9, n0, _UALS,
|
|
1920
|
-
{ [_h]: ["PATCH", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 200] }, () => UpdateAccessLogSubscriptionRequest$, () => UpdateAccessLogSubscriptionResponse$
|
|
1921
|
-
];
|
|
1922
|
-
var UpdateListener$ = [9, n0, _UL,
|
|
1923
|
-
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 200] }, () => UpdateListenerRequest$, () => UpdateListenerResponse$
|
|
1924
|
-
];
|
|
1925
|
-
var UpdateResourceConfiguration$ = [9, n0, _URC,
|
|
1926
|
-
{ [_h]: ["PATCH", "/resourceconfigurations/{resourceConfigurationIdentifier}", 200] }, () => UpdateResourceConfigurationRequest$, () => UpdateResourceConfigurationResponse$
|
|
1927
|
-
];
|
|
1928
|
-
var UpdateResourceGateway$ = [9, n0, _URG,
|
|
1929
|
-
{ [_h]: ["PATCH", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => UpdateResourceGatewayRequest$, () => UpdateResourceGatewayResponse$
|
|
1930
|
-
];
|
|
1931
|
-
var UpdateRule$ = [9, n0, _URp,
|
|
1932
|
-
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 200] }, () => UpdateRuleRequest$, () => UpdateRuleResponse$
|
|
1933
|
-
];
|
|
1934
|
-
var UpdateService$ = [9, n0, _US,
|
|
1935
|
-
{ [_h]: ["PATCH", "/services/{serviceIdentifier}", 200] }, () => UpdateServiceRequest$, () => UpdateServiceResponse$
|
|
1936
|
-
];
|
|
1937
|
-
var UpdateServiceNetwork$ = [9, n0, _USN,
|
|
1938
|
-
{ [_h]: ["PATCH", "/servicenetworks/{serviceNetworkIdentifier}", 200] }, () => UpdateServiceNetworkRequest$, () => UpdateServiceNetworkResponse$
|
|
1939
|
-
];
|
|
1940
|
-
var UpdateServiceNetworkVpcAssociation$ = [9, n0, _USNVA,
|
|
1941
|
-
{ [_h]: ["PATCH", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => UpdateServiceNetworkVpcAssociationRequest$, () => UpdateServiceNetworkVpcAssociationResponse$
|
|
1942
|
-
];
|
|
1943
|
-
var UpdateTargetGroup$ = [9, n0, _UTG,
|
|
1944
|
-
{ [_h]: ["PATCH", "/targetgroups/{targetGroupIdentifier}", 200] }, () => UpdateTargetGroupRequest$, () => UpdateTargetGroupResponse$
|
|
1945
|
-
];
|
|
1946
|
-
|
|
1947
116
|
class BatchUpdateRuleCommand extends smithyClient.Command
|
|
1948
117
|
.classBuilder()
|
|
1949
118
|
.ep(commonParams)
|
|
@@ -1952,7 +121,7 @@ class BatchUpdateRuleCommand extends smithyClient.Command
|
|
|
1952
121
|
})
|
|
1953
122
|
.s("MercuryControlPlane", "BatchUpdateRule", {})
|
|
1954
123
|
.n("VPCLatticeClient", "BatchUpdateRuleCommand")
|
|
1955
|
-
.sc(BatchUpdateRule$)
|
|
124
|
+
.sc(schemas_0.BatchUpdateRule$)
|
|
1956
125
|
.build() {
|
|
1957
126
|
}
|
|
1958
127
|
|
|
@@ -1964,7 +133,7 @@ class CreateAccessLogSubscriptionCommand extends smithyClient.Command
|
|
|
1964
133
|
})
|
|
1965
134
|
.s("MercuryControlPlane", "CreateAccessLogSubscription", {})
|
|
1966
135
|
.n("VPCLatticeClient", "CreateAccessLogSubscriptionCommand")
|
|
1967
|
-
.sc(CreateAccessLogSubscription$)
|
|
136
|
+
.sc(schemas_0.CreateAccessLogSubscription$)
|
|
1968
137
|
.build() {
|
|
1969
138
|
}
|
|
1970
139
|
|
|
@@ -1976,7 +145,7 @@ class CreateListenerCommand extends smithyClient.Command
|
|
|
1976
145
|
})
|
|
1977
146
|
.s("MercuryControlPlane", "CreateListener", {})
|
|
1978
147
|
.n("VPCLatticeClient", "CreateListenerCommand")
|
|
1979
|
-
.sc(CreateListener$)
|
|
148
|
+
.sc(schemas_0.CreateListener$)
|
|
1980
149
|
.build() {
|
|
1981
150
|
}
|
|
1982
151
|
|
|
@@ -1988,7 +157,7 @@ class CreateResourceConfigurationCommand extends smithyClient.Command
|
|
|
1988
157
|
})
|
|
1989
158
|
.s("MercuryControlPlane", "CreateResourceConfiguration", {})
|
|
1990
159
|
.n("VPCLatticeClient", "CreateResourceConfigurationCommand")
|
|
1991
|
-
.sc(CreateResourceConfiguration$)
|
|
160
|
+
.sc(schemas_0.CreateResourceConfiguration$)
|
|
1992
161
|
.build() {
|
|
1993
162
|
}
|
|
1994
163
|
|
|
@@ -2000,7 +169,7 @@ class CreateResourceGatewayCommand extends smithyClient.Command
|
|
|
2000
169
|
})
|
|
2001
170
|
.s("MercuryControlPlane", "CreateResourceGateway", {})
|
|
2002
171
|
.n("VPCLatticeClient", "CreateResourceGatewayCommand")
|
|
2003
|
-
.sc(CreateResourceGateway$)
|
|
172
|
+
.sc(schemas_0.CreateResourceGateway$)
|
|
2004
173
|
.build() {
|
|
2005
174
|
}
|
|
2006
175
|
|
|
@@ -2012,7 +181,7 @@ class CreateRuleCommand extends smithyClient.Command
|
|
|
2012
181
|
})
|
|
2013
182
|
.s("MercuryControlPlane", "CreateRule", {})
|
|
2014
183
|
.n("VPCLatticeClient", "CreateRuleCommand")
|
|
2015
|
-
.sc(CreateRule$)
|
|
184
|
+
.sc(schemas_0.CreateRule$)
|
|
2016
185
|
.build() {
|
|
2017
186
|
}
|
|
2018
187
|
|
|
@@ -2024,7 +193,7 @@ class CreateServiceCommand extends smithyClient.Command
|
|
|
2024
193
|
})
|
|
2025
194
|
.s("MercuryControlPlane", "CreateService", {})
|
|
2026
195
|
.n("VPCLatticeClient", "CreateServiceCommand")
|
|
2027
|
-
.sc(CreateService$)
|
|
196
|
+
.sc(schemas_0.CreateService$)
|
|
2028
197
|
.build() {
|
|
2029
198
|
}
|
|
2030
199
|
|
|
@@ -2036,7 +205,7 @@ class CreateServiceNetworkCommand extends smithyClient.Command
|
|
|
2036
205
|
})
|
|
2037
206
|
.s("MercuryControlPlane", "CreateServiceNetwork", {})
|
|
2038
207
|
.n("VPCLatticeClient", "CreateServiceNetworkCommand")
|
|
2039
|
-
.sc(CreateServiceNetwork$)
|
|
208
|
+
.sc(schemas_0.CreateServiceNetwork$)
|
|
2040
209
|
.build() {
|
|
2041
210
|
}
|
|
2042
211
|
|
|
@@ -2048,7 +217,7 @@ class CreateServiceNetworkResourceAssociationCommand extends smithyClient.Comman
|
|
|
2048
217
|
})
|
|
2049
218
|
.s("MercuryControlPlane", "CreateServiceNetworkResourceAssociation", {})
|
|
2050
219
|
.n("VPCLatticeClient", "CreateServiceNetworkResourceAssociationCommand")
|
|
2051
|
-
.sc(CreateServiceNetworkResourceAssociation$)
|
|
220
|
+
.sc(schemas_0.CreateServiceNetworkResourceAssociation$)
|
|
2052
221
|
.build() {
|
|
2053
222
|
}
|
|
2054
223
|
|
|
@@ -2060,7 +229,7 @@ class CreateServiceNetworkServiceAssociationCommand extends smithyClient.Command
|
|
|
2060
229
|
})
|
|
2061
230
|
.s("MercuryControlPlane", "CreateServiceNetworkServiceAssociation", {})
|
|
2062
231
|
.n("VPCLatticeClient", "CreateServiceNetworkServiceAssociationCommand")
|
|
2063
|
-
.sc(CreateServiceNetworkServiceAssociation$)
|
|
232
|
+
.sc(schemas_0.CreateServiceNetworkServiceAssociation$)
|
|
2064
233
|
.build() {
|
|
2065
234
|
}
|
|
2066
235
|
|
|
@@ -2072,7 +241,7 @@ class CreateServiceNetworkVpcAssociationCommand extends smithyClient.Command
|
|
|
2072
241
|
})
|
|
2073
242
|
.s("MercuryControlPlane", "CreateServiceNetworkVpcAssociation", {})
|
|
2074
243
|
.n("VPCLatticeClient", "CreateServiceNetworkVpcAssociationCommand")
|
|
2075
|
-
.sc(CreateServiceNetworkVpcAssociation$)
|
|
244
|
+
.sc(schemas_0.CreateServiceNetworkVpcAssociation$)
|
|
2076
245
|
.build() {
|
|
2077
246
|
}
|
|
2078
247
|
|
|
@@ -2084,7 +253,7 @@ class CreateTargetGroupCommand extends smithyClient.Command
|
|
|
2084
253
|
})
|
|
2085
254
|
.s("MercuryControlPlane", "CreateTargetGroup", {})
|
|
2086
255
|
.n("VPCLatticeClient", "CreateTargetGroupCommand")
|
|
2087
|
-
.sc(CreateTargetGroup$)
|
|
256
|
+
.sc(schemas_0.CreateTargetGroup$)
|
|
2088
257
|
.build() {
|
|
2089
258
|
}
|
|
2090
259
|
|
|
@@ -2096,7 +265,7 @@ class DeleteAccessLogSubscriptionCommand extends smithyClient.Command
|
|
|
2096
265
|
})
|
|
2097
266
|
.s("MercuryControlPlane", "DeleteAccessLogSubscription", {})
|
|
2098
267
|
.n("VPCLatticeClient", "DeleteAccessLogSubscriptionCommand")
|
|
2099
|
-
.sc(DeleteAccessLogSubscription$)
|
|
268
|
+
.sc(schemas_0.DeleteAccessLogSubscription$)
|
|
2100
269
|
.build() {
|
|
2101
270
|
}
|
|
2102
271
|
|
|
@@ -2108,7 +277,7 @@ class DeleteAuthPolicyCommand extends smithyClient.Command
|
|
|
2108
277
|
})
|
|
2109
278
|
.s("MercuryControlPlane", "DeleteAuthPolicy", {})
|
|
2110
279
|
.n("VPCLatticeClient", "DeleteAuthPolicyCommand")
|
|
2111
|
-
.sc(DeleteAuthPolicy$)
|
|
280
|
+
.sc(schemas_0.DeleteAuthPolicy$)
|
|
2112
281
|
.build() {
|
|
2113
282
|
}
|
|
2114
283
|
|
|
@@ -2120,7 +289,7 @@ class DeleteDomainVerificationCommand extends smithyClient.Command
|
|
|
2120
289
|
})
|
|
2121
290
|
.s("MercuryControlPlane", "DeleteDomainVerification", {})
|
|
2122
291
|
.n("VPCLatticeClient", "DeleteDomainVerificationCommand")
|
|
2123
|
-
.sc(DeleteDomainVerification$)
|
|
292
|
+
.sc(schemas_0.DeleteDomainVerification$)
|
|
2124
293
|
.build() {
|
|
2125
294
|
}
|
|
2126
295
|
|
|
@@ -2132,7 +301,7 @@ class DeleteListenerCommand extends smithyClient.Command
|
|
|
2132
301
|
})
|
|
2133
302
|
.s("MercuryControlPlane", "DeleteListener", {})
|
|
2134
303
|
.n("VPCLatticeClient", "DeleteListenerCommand")
|
|
2135
|
-
.sc(DeleteListener$)
|
|
304
|
+
.sc(schemas_0.DeleteListener$)
|
|
2136
305
|
.build() {
|
|
2137
306
|
}
|
|
2138
307
|
|
|
@@ -2144,7 +313,7 @@ class DeleteResourceConfigurationCommand extends smithyClient.Command
|
|
|
2144
313
|
})
|
|
2145
314
|
.s("MercuryControlPlane", "DeleteResourceConfiguration", {})
|
|
2146
315
|
.n("VPCLatticeClient", "DeleteResourceConfigurationCommand")
|
|
2147
|
-
.sc(DeleteResourceConfiguration$)
|
|
316
|
+
.sc(schemas_0.DeleteResourceConfiguration$)
|
|
2148
317
|
.build() {
|
|
2149
318
|
}
|
|
2150
319
|
|
|
@@ -2156,7 +325,7 @@ class DeleteResourceEndpointAssociationCommand extends smithyClient.Command
|
|
|
2156
325
|
})
|
|
2157
326
|
.s("MercuryControlPlane", "DeleteResourceEndpointAssociation", {})
|
|
2158
327
|
.n("VPCLatticeClient", "DeleteResourceEndpointAssociationCommand")
|
|
2159
|
-
.sc(DeleteResourceEndpointAssociation$)
|
|
328
|
+
.sc(schemas_0.DeleteResourceEndpointAssociation$)
|
|
2160
329
|
.build() {
|
|
2161
330
|
}
|
|
2162
331
|
|
|
@@ -2168,7 +337,7 @@ class DeleteResourceGatewayCommand extends smithyClient.Command
|
|
|
2168
337
|
})
|
|
2169
338
|
.s("MercuryControlPlane", "DeleteResourceGateway", {})
|
|
2170
339
|
.n("VPCLatticeClient", "DeleteResourceGatewayCommand")
|
|
2171
|
-
.sc(DeleteResourceGateway$)
|
|
340
|
+
.sc(schemas_0.DeleteResourceGateway$)
|
|
2172
341
|
.build() {
|
|
2173
342
|
}
|
|
2174
343
|
|
|
@@ -2180,7 +349,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
2180
349
|
})
|
|
2181
350
|
.s("MercuryControlPlane", "DeleteResourcePolicy", {})
|
|
2182
351
|
.n("VPCLatticeClient", "DeleteResourcePolicyCommand")
|
|
2183
|
-
.sc(DeleteResourcePolicy$)
|
|
352
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
2184
353
|
.build() {
|
|
2185
354
|
}
|
|
2186
355
|
|
|
@@ -2192,7 +361,7 @@ class DeleteRuleCommand extends smithyClient.Command
|
|
|
2192
361
|
})
|
|
2193
362
|
.s("MercuryControlPlane", "DeleteRule", {})
|
|
2194
363
|
.n("VPCLatticeClient", "DeleteRuleCommand")
|
|
2195
|
-
.sc(DeleteRule$)
|
|
364
|
+
.sc(schemas_0.DeleteRule$)
|
|
2196
365
|
.build() {
|
|
2197
366
|
}
|
|
2198
367
|
|
|
@@ -2204,7 +373,7 @@ class DeleteServiceCommand extends smithyClient.Command
|
|
|
2204
373
|
})
|
|
2205
374
|
.s("MercuryControlPlane", "DeleteService", {})
|
|
2206
375
|
.n("VPCLatticeClient", "DeleteServiceCommand")
|
|
2207
|
-
.sc(DeleteService$)
|
|
376
|
+
.sc(schemas_0.DeleteService$)
|
|
2208
377
|
.build() {
|
|
2209
378
|
}
|
|
2210
379
|
|
|
@@ -2216,7 +385,7 @@ class DeleteServiceNetworkCommand extends smithyClient.Command
|
|
|
2216
385
|
})
|
|
2217
386
|
.s("MercuryControlPlane", "DeleteServiceNetwork", {})
|
|
2218
387
|
.n("VPCLatticeClient", "DeleteServiceNetworkCommand")
|
|
2219
|
-
.sc(DeleteServiceNetwork$)
|
|
388
|
+
.sc(schemas_0.DeleteServiceNetwork$)
|
|
2220
389
|
.build() {
|
|
2221
390
|
}
|
|
2222
391
|
|
|
@@ -2228,7 +397,7 @@ class DeleteServiceNetworkResourceAssociationCommand extends smithyClient.Comman
|
|
|
2228
397
|
})
|
|
2229
398
|
.s("MercuryControlPlane", "DeleteServiceNetworkResourceAssociation", {})
|
|
2230
399
|
.n("VPCLatticeClient", "DeleteServiceNetworkResourceAssociationCommand")
|
|
2231
|
-
.sc(DeleteServiceNetworkResourceAssociation$)
|
|
400
|
+
.sc(schemas_0.DeleteServiceNetworkResourceAssociation$)
|
|
2232
401
|
.build() {
|
|
2233
402
|
}
|
|
2234
403
|
|
|
@@ -2240,7 +409,7 @@ class DeleteServiceNetworkServiceAssociationCommand extends smithyClient.Command
|
|
|
2240
409
|
})
|
|
2241
410
|
.s("MercuryControlPlane", "DeleteServiceNetworkServiceAssociation", {})
|
|
2242
411
|
.n("VPCLatticeClient", "DeleteServiceNetworkServiceAssociationCommand")
|
|
2243
|
-
.sc(DeleteServiceNetworkServiceAssociation$)
|
|
412
|
+
.sc(schemas_0.DeleteServiceNetworkServiceAssociation$)
|
|
2244
413
|
.build() {
|
|
2245
414
|
}
|
|
2246
415
|
|
|
@@ -2252,7 +421,7 @@ class DeleteServiceNetworkVpcAssociationCommand extends smithyClient.Command
|
|
|
2252
421
|
})
|
|
2253
422
|
.s("MercuryControlPlane", "DeleteServiceNetworkVpcAssociation", {})
|
|
2254
423
|
.n("VPCLatticeClient", "DeleteServiceNetworkVpcAssociationCommand")
|
|
2255
|
-
.sc(DeleteServiceNetworkVpcAssociation$)
|
|
424
|
+
.sc(schemas_0.DeleteServiceNetworkVpcAssociation$)
|
|
2256
425
|
.build() {
|
|
2257
426
|
}
|
|
2258
427
|
|
|
@@ -2264,7 +433,7 @@ class DeleteTargetGroupCommand extends smithyClient.Command
|
|
|
2264
433
|
})
|
|
2265
434
|
.s("MercuryControlPlane", "DeleteTargetGroup", {})
|
|
2266
435
|
.n("VPCLatticeClient", "DeleteTargetGroupCommand")
|
|
2267
|
-
.sc(DeleteTargetGroup$)
|
|
436
|
+
.sc(schemas_0.DeleteTargetGroup$)
|
|
2268
437
|
.build() {
|
|
2269
438
|
}
|
|
2270
439
|
|
|
@@ -2276,7 +445,7 @@ class DeregisterTargetsCommand extends smithyClient.Command
|
|
|
2276
445
|
})
|
|
2277
446
|
.s("MercuryControlPlane", "DeregisterTargets", {})
|
|
2278
447
|
.n("VPCLatticeClient", "DeregisterTargetsCommand")
|
|
2279
|
-
.sc(DeregisterTargets$)
|
|
448
|
+
.sc(schemas_0.DeregisterTargets$)
|
|
2280
449
|
.build() {
|
|
2281
450
|
}
|
|
2282
451
|
|
|
@@ -2288,7 +457,7 @@ class GetAccessLogSubscriptionCommand extends smithyClient.Command
|
|
|
2288
457
|
})
|
|
2289
458
|
.s("MercuryControlPlane", "GetAccessLogSubscription", {})
|
|
2290
459
|
.n("VPCLatticeClient", "GetAccessLogSubscriptionCommand")
|
|
2291
|
-
.sc(GetAccessLogSubscription$)
|
|
460
|
+
.sc(schemas_0.GetAccessLogSubscription$)
|
|
2292
461
|
.build() {
|
|
2293
462
|
}
|
|
2294
463
|
|
|
@@ -2300,7 +469,7 @@ class GetAuthPolicyCommand extends smithyClient.Command
|
|
|
2300
469
|
})
|
|
2301
470
|
.s("MercuryControlPlane", "GetAuthPolicy", {})
|
|
2302
471
|
.n("VPCLatticeClient", "GetAuthPolicyCommand")
|
|
2303
|
-
.sc(GetAuthPolicy$)
|
|
472
|
+
.sc(schemas_0.GetAuthPolicy$)
|
|
2304
473
|
.build() {
|
|
2305
474
|
}
|
|
2306
475
|
|
|
@@ -2312,7 +481,7 @@ class GetDomainVerificationCommand extends smithyClient.Command
|
|
|
2312
481
|
})
|
|
2313
482
|
.s("MercuryControlPlane", "GetDomainVerification", {})
|
|
2314
483
|
.n("VPCLatticeClient", "GetDomainVerificationCommand")
|
|
2315
|
-
.sc(GetDomainVerification$)
|
|
484
|
+
.sc(schemas_0.GetDomainVerification$)
|
|
2316
485
|
.build() {
|
|
2317
486
|
}
|
|
2318
487
|
|
|
@@ -2324,7 +493,7 @@ class GetListenerCommand extends smithyClient.Command
|
|
|
2324
493
|
})
|
|
2325
494
|
.s("MercuryControlPlane", "GetListener", {})
|
|
2326
495
|
.n("VPCLatticeClient", "GetListenerCommand")
|
|
2327
|
-
.sc(GetListener$)
|
|
496
|
+
.sc(schemas_0.GetListener$)
|
|
2328
497
|
.build() {
|
|
2329
498
|
}
|
|
2330
499
|
|
|
@@ -2336,7 +505,7 @@ class GetResourceConfigurationCommand extends smithyClient.Command
|
|
|
2336
505
|
})
|
|
2337
506
|
.s("MercuryControlPlane", "GetResourceConfiguration", {})
|
|
2338
507
|
.n("VPCLatticeClient", "GetResourceConfigurationCommand")
|
|
2339
|
-
.sc(GetResourceConfiguration$)
|
|
508
|
+
.sc(schemas_0.GetResourceConfiguration$)
|
|
2340
509
|
.build() {
|
|
2341
510
|
}
|
|
2342
511
|
|
|
@@ -2348,7 +517,7 @@ class GetResourceGatewayCommand extends smithyClient.Command
|
|
|
2348
517
|
})
|
|
2349
518
|
.s("MercuryControlPlane", "GetResourceGateway", {})
|
|
2350
519
|
.n("VPCLatticeClient", "GetResourceGatewayCommand")
|
|
2351
|
-
.sc(GetResourceGateway$)
|
|
520
|
+
.sc(schemas_0.GetResourceGateway$)
|
|
2352
521
|
.build() {
|
|
2353
522
|
}
|
|
2354
523
|
|
|
@@ -2360,7 +529,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
2360
529
|
})
|
|
2361
530
|
.s("MercuryControlPlane", "GetResourcePolicy", {})
|
|
2362
531
|
.n("VPCLatticeClient", "GetResourcePolicyCommand")
|
|
2363
|
-
.sc(GetResourcePolicy$)
|
|
532
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
2364
533
|
.build() {
|
|
2365
534
|
}
|
|
2366
535
|
|
|
@@ -2372,7 +541,7 @@ class GetRuleCommand extends smithyClient.Command
|
|
|
2372
541
|
})
|
|
2373
542
|
.s("MercuryControlPlane", "GetRule", {})
|
|
2374
543
|
.n("VPCLatticeClient", "GetRuleCommand")
|
|
2375
|
-
.sc(GetRule$)
|
|
544
|
+
.sc(schemas_0.GetRule$)
|
|
2376
545
|
.build() {
|
|
2377
546
|
}
|
|
2378
547
|
|
|
@@ -2384,7 +553,7 @@ class GetServiceCommand extends smithyClient.Command
|
|
|
2384
553
|
})
|
|
2385
554
|
.s("MercuryControlPlane", "GetService", {})
|
|
2386
555
|
.n("VPCLatticeClient", "GetServiceCommand")
|
|
2387
|
-
.sc(GetService$)
|
|
556
|
+
.sc(schemas_0.GetService$)
|
|
2388
557
|
.build() {
|
|
2389
558
|
}
|
|
2390
559
|
|
|
@@ -2396,7 +565,7 @@ class GetServiceNetworkCommand extends smithyClient.Command
|
|
|
2396
565
|
})
|
|
2397
566
|
.s("MercuryControlPlane", "GetServiceNetwork", {})
|
|
2398
567
|
.n("VPCLatticeClient", "GetServiceNetworkCommand")
|
|
2399
|
-
.sc(GetServiceNetwork$)
|
|
568
|
+
.sc(schemas_0.GetServiceNetwork$)
|
|
2400
569
|
.build() {
|
|
2401
570
|
}
|
|
2402
571
|
|
|
@@ -2408,7 +577,7 @@ class GetServiceNetworkResourceAssociationCommand extends smithyClient.Command
|
|
|
2408
577
|
})
|
|
2409
578
|
.s("MercuryControlPlane", "GetServiceNetworkResourceAssociation", {})
|
|
2410
579
|
.n("VPCLatticeClient", "GetServiceNetworkResourceAssociationCommand")
|
|
2411
|
-
.sc(GetServiceNetworkResourceAssociation$)
|
|
580
|
+
.sc(schemas_0.GetServiceNetworkResourceAssociation$)
|
|
2412
581
|
.build() {
|
|
2413
582
|
}
|
|
2414
583
|
|
|
@@ -2420,7 +589,7 @@ class GetServiceNetworkServiceAssociationCommand extends smithyClient.Command
|
|
|
2420
589
|
})
|
|
2421
590
|
.s("MercuryControlPlane", "GetServiceNetworkServiceAssociation", {})
|
|
2422
591
|
.n("VPCLatticeClient", "GetServiceNetworkServiceAssociationCommand")
|
|
2423
|
-
.sc(GetServiceNetworkServiceAssociation$)
|
|
592
|
+
.sc(schemas_0.GetServiceNetworkServiceAssociation$)
|
|
2424
593
|
.build() {
|
|
2425
594
|
}
|
|
2426
595
|
|
|
@@ -2432,7 +601,7 @@ class GetServiceNetworkVpcAssociationCommand extends smithyClient.Command
|
|
|
2432
601
|
})
|
|
2433
602
|
.s("MercuryControlPlane", "GetServiceNetworkVpcAssociation", {})
|
|
2434
603
|
.n("VPCLatticeClient", "GetServiceNetworkVpcAssociationCommand")
|
|
2435
|
-
.sc(GetServiceNetworkVpcAssociation$)
|
|
604
|
+
.sc(schemas_0.GetServiceNetworkVpcAssociation$)
|
|
2436
605
|
.build() {
|
|
2437
606
|
}
|
|
2438
607
|
|
|
@@ -2444,7 +613,7 @@ class GetTargetGroupCommand extends smithyClient.Command
|
|
|
2444
613
|
})
|
|
2445
614
|
.s("MercuryControlPlane", "GetTargetGroup", {})
|
|
2446
615
|
.n("VPCLatticeClient", "GetTargetGroupCommand")
|
|
2447
|
-
.sc(GetTargetGroup$)
|
|
616
|
+
.sc(schemas_0.GetTargetGroup$)
|
|
2448
617
|
.build() {
|
|
2449
618
|
}
|
|
2450
619
|
|
|
@@ -2456,7 +625,7 @@ class ListAccessLogSubscriptionsCommand extends smithyClient.Command
|
|
|
2456
625
|
})
|
|
2457
626
|
.s("MercuryControlPlane", "ListAccessLogSubscriptions", {})
|
|
2458
627
|
.n("VPCLatticeClient", "ListAccessLogSubscriptionsCommand")
|
|
2459
|
-
.sc(ListAccessLogSubscriptions$)
|
|
628
|
+
.sc(schemas_0.ListAccessLogSubscriptions$)
|
|
2460
629
|
.build() {
|
|
2461
630
|
}
|
|
2462
631
|
|
|
@@ -2468,7 +637,7 @@ class ListDomainVerificationsCommand extends smithyClient.Command
|
|
|
2468
637
|
})
|
|
2469
638
|
.s("MercuryControlPlane", "ListDomainVerifications", {})
|
|
2470
639
|
.n("VPCLatticeClient", "ListDomainVerificationsCommand")
|
|
2471
|
-
.sc(ListDomainVerifications$)
|
|
640
|
+
.sc(schemas_0.ListDomainVerifications$)
|
|
2472
641
|
.build() {
|
|
2473
642
|
}
|
|
2474
643
|
|
|
@@ -2480,7 +649,7 @@ class ListListenersCommand extends smithyClient.Command
|
|
|
2480
649
|
})
|
|
2481
650
|
.s("MercuryControlPlane", "ListListeners", {})
|
|
2482
651
|
.n("VPCLatticeClient", "ListListenersCommand")
|
|
2483
|
-
.sc(ListListeners$)
|
|
652
|
+
.sc(schemas_0.ListListeners$)
|
|
2484
653
|
.build() {
|
|
2485
654
|
}
|
|
2486
655
|
|
|
@@ -2492,7 +661,7 @@ class ListResourceConfigurationsCommand extends smithyClient.Command
|
|
|
2492
661
|
})
|
|
2493
662
|
.s("MercuryControlPlane", "ListResourceConfigurations", {})
|
|
2494
663
|
.n("VPCLatticeClient", "ListResourceConfigurationsCommand")
|
|
2495
|
-
.sc(ListResourceConfigurations$)
|
|
664
|
+
.sc(schemas_0.ListResourceConfigurations$)
|
|
2496
665
|
.build() {
|
|
2497
666
|
}
|
|
2498
667
|
|
|
@@ -2504,7 +673,7 @@ class ListResourceEndpointAssociationsCommand extends smithyClient.Command
|
|
|
2504
673
|
})
|
|
2505
674
|
.s("MercuryControlPlane", "ListResourceEndpointAssociations", {})
|
|
2506
675
|
.n("VPCLatticeClient", "ListResourceEndpointAssociationsCommand")
|
|
2507
|
-
.sc(ListResourceEndpointAssociations$)
|
|
676
|
+
.sc(schemas_0.ListResourceEndpointAssociations$)
|
|
2508
677
|
.build() {
|
|
2509
678
|
}
|
|
2510
679
|
|
|
@@ -2516,7 +685,7 @@ class ListResourceGatewaysCommand extends smithyClient.Command
|
|
|
2516
685
|
})
|
|
2517
686
|
.s("MercuryControlPlane", "ListResourceGateways", {})
|
|
2518
687
|
.n("VPCLatticeClient", "ListResourceGatewaysCommand")
|
|
2519
|
-
.sc(ListResourceGateways$)
|
|
688
|
+
.sc(schemas_0.ListResourceGateways$)
|
|
2520
689
|
.build() {
|
|
2521
690
|
}
|
|
2522
691
|
|
|
@@ -2528,7 +697,7 @@ class ListRulesCommand extends smithyClient.Command
|
|
|
2528
697
|
})
|
|
2529
698
|
.s("MercuryControlPlane", "ListRules", {})
|
|
2530
699
|
.n("VPCLatticeClient", "ListRulesCommand")
|
|
2531
|
-
.sc(ListRules$)
|
|
700
|
+
.sc(schemas_0.ListRules$)
|
|
2532
701
|
.build() {
|
|
2533
702
|
}
|
|
2534
703
|
|
|
@@ -2540,7 +709,7 @@ class ListServiceNetworkResourceAssociationsCommand extends smithyClient.Command
|
|
|
2540
709
|
})
|
|
2541
710
|
.s("MercuryControlPlane", "ListServiceNetworkResourceAssociations", {})
|
|
2542
711
|
.n("VPCLatticeClient", "ListServiceNetworkResourceAssociationsCommand")
|
|
2543
|
-
.sc(ListServiceNetworkResourceAssociations$)
|
|
712
|
+
.sc(schemas_0.ListServiceNetworkResourceAssociations$)
|
|
2544
713
|
.build() {
|
|
2545
714
|
}
|
|
2546
715
|
|
|
@@ -2552,7 +721,7 @@ class ListServiceNetworksCommand extends smithyClient.Command
|
|
|
2552
721
|
})
|
|
2553
722
|
.s("MercuryControlPlane", "ListServiceNetworks", {})
|
|
2554
723
|
.n("VPCLatticeClient", "ListServiceNetworksCommand")
|
|
2555
|
-
.sc(ListServiceNetworks$)
|
|
724
|
+
.sc(schemas_0.ListServiceNetworks$)
|
|
2556
725
|
.build() {
|
|
2557
726
|
}
|
|
2558
727
|
|
|
@@ -2564,7 +733,7 @@ class ListServiceNetworkServiceAssociationsCommand extends smithyClient.Command
|
|
|
2564
733
|
})
|
|
2565
734
|
.s("MercuryControlPlane", "ListServiceNetworkServiceAssociations", {})
|
|
2566
735
|
.n("VPCLatticeClient", "ListServiceNetworkServiceAssociationsCommand")
|
|
2567
|
-
.sc(ListServiceNetworkServiceAssociations$)
|
|
736
|
+
.sc(schemas_0.ListServiceNetworkServiceAssociations$)
|
|
2568
737
|
.build() {
|
|
2569
738
|
}
|
|
2570
739
|
|
|
@@ -2576,7 +745,7 @@ class ListServiceNetworkVpcAssociationsCommand extends smithyClient.Command
|
|
|
2576
745
|
})
|
|
2577
746
|
.s("MercuryControlPlane", "ListServiceNetworkVpcAssociations", {})
|
|
2578
747
|
.n("VPCLatticeClient", "ListServiceNetworkVpcAssociationsCommand")
|
|
2579
|
-
.sc(ListServiceNetworkVpcAssociations$)
|
|
748
|
+
.sc(schemas_0.ListServiceNetworkVpcAssociations$)
|
|
2580
749
|
.build() {
|
|
2581
750
|
}
|
|
2582
751
|
|
|
@@ -2588,7 +757,7 @@ class ListServiceNetworkVpcEndpointAssociationsCommand extends smithyClient.Comm
|
|
|
2588
757
|
})
|
|
2589
758
|
.s("MercuryControlPlane", "ListServiceNetworkVpcEndpointAssociations", {})
|
|
2590
759
|
.n("VPCLatticeClient", "ListServiceNetworkVpcEndpointAssociationsCommand")
|
|
2591
|
-
.sc(ListServiceNetworkVpcEndpointAssociations$)
|
|
760
|
+
.sc(schemas_0.ListServiceNetworkVpcEndpointAssociations$)
|
|
2592
761
|
.build() {
|
|
2593
762
|
}
|
|
2594
763
|
|
|
@@ -2600,7 +769,7 @@ class ListServicesCommand extends smithyClient.Command
|
|
|
2600
769
|
})
|
|
2601
770
|
.s("MercuryControlPlane", "ListServices", {})
|
|
2602
771
|
.n("VPCLatticeClient", "ListServicesCommand")
|
|
2603
|
-
.sc(ListServices$)
|
|
772
|
+
.sc(schemas_0.ListServices$)
|
|
2604
773
|
.build() {
|
|
2605
774
|
}
|
|
2606
775
|
|
|
@@ -2612,7 +781,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2612
781
|
})
|
|
2613
782
|
.s("MercuryControlPlane", "ListTagsForResource", {})
|
|
2614
783
|
.n("VPCLatticeClient", "ListTagsForResourceCommand")
|
|
2615
|
-
.sc(ListTagsForResource$)
|
|
784
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2616
785
|
.build() {
|
|
2617
786
|
}
|
|
2618
787
|
|
|
@@ -2624,7 +793,7 @@ class ListTargetGroupsCommand extends smithyClient.Command
|
|
|
2624
793
|
})
|
|
2625
794
|
.s("MercuryControlPlane", "ListTargetGroups", {})
|
|
2626
795
|
.n("VPCLatticeClient", "ListTargetGroupsCommand")
|
|
2627
|
-
.sc(ListTargetGroups$)
|
|
796
|
+
.sc(schemas_0.ListTargetGroups$)
|
|
2628
797
|
.build() {
|
|
2629
798
|
}
|
|
2630
799
|
|
|
@@ -2636,7 +805,7 @@ class ListTargetsCommand extends smithyClient.Command
|
|
|
2636
805
|
})
|
|
2637
806
|
.s("MercuryControlPlane", "ListTargets", {})
|
|
2638
807
|
.n("VPCLatticeClient", "ListTargetsCommand")
|
|
2639
|
-
.sc(ListTargets$)
|
|
808
|
+
.sc(schemas_0.ListTargets$)
|
|
2640
809
|
.build() {
|
|
2641
810
|
}
|
|
2642
811
|
|
|
@@ -2648,7 +817,7 @@ class PutAuthPolicyCommand extends smithyClient.Command
|
|
|
2648
817
|
})
|
|
2649
818
|
.s("MercuryControlPlane", "PutAuthPolicy", {})
|
|
2650
819
|
.n("VPCLatticeClient", "PutAuthPolicyCommand")
|
|
2651
|
-
.sc(PutAuthPolicy$)
|
|
820
|
+
.sc(schemas_0.PutAuthPolicy$)
|
|
2652
821
|
.build() {
|
|
2653
822
|
}
|
|
2654
823
|
|
|
@@ -2660,7 +829,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
2660
829
|
})
|
|
2661
830
|
.s("MercuryControlPlane", "PutResourcePolicy", {})
|
|
2662
831
|
.n("VPCLatticeClient", "PutResourcePolicyCommand")
|
|
2663
|
-
.sc(PutResourcePolicy$)
|
|
832
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
2664
833
|
.build() {
|
|
2665
834
|
}
|
|
2666
835
|
|
|
@@ -2672,7 +841,7 @@ class RegisterTargetsCommand extends smithyClient.Command
|
|
|
2672
841
|
})
|
|
2673
842
|
.s("MercuryControlPlane", "RegisterTargets", {})
|
|
2674
843
|
.n("VPCLatticeClient", "RegisterTargetsCommand")
|
|
2675
|
-
.sc(RegisterTargets$)
|
|
844
|
+
.sc(schemas_0.RegisterTargets$)
|
|
2676
845
|
.build() {
|
|
2677
846
|
}
|
|
2678
847
|
|
|
@@ -2684,7 +853,7 @@ class StartDomainVerificationCommand extends smithyClient.Command
|
|
|
2684
853
|
})
|
|
2685
854
|
.s("MercuryControlPlane", "StartDomainVerification", {})
|
|
2686
855
|
.n("VPCLatticeClient", "StartDomainVerificationCommand")
|
|
2687
|
-
.sc(StartDomainVerification$)
|
|
856
|
+
.sc(schemas_0.StartDomainVerification$)
|
|
2688
857
|
.build() {
|
|
2689
858
|
}
|
|
2690
859
|
|
|
@@ -2696,7 +865,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2696
865
|
})
|
|
2697
866
|
.s("MercuryControlPlane", "TagResource", {})
|
|
2698
867
|
.n("VPCLatticeClient", "TagResourceCommand")
|
|
2699
|
-
.sc(TagResource$)
|
|
868
|
+
.sc(schemas_0.TagResource$)
|
|
2700
869
|
.build() {
|
|
2701
870
|
}
|
|
2702
871
|
|
|
@@ -2708,7 +877,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2708
877
|
})
|
|
2709
878
|
.s("MercuryControlPlane", "UntagResource", {})
|
|
2710
879
|
.n("VPCLatticeClient", "UntagResourceCommand")
|
|
2711
|
-
.sc(UntagResource$)
|
|
880
|
+
.sc(schemas_0.UntagResource$)
|
|
2712
881
|
.build() {
|
|
2713
882
|
}
|
|
2714
883
|
|
|
@@ -2720,7 +889,7 @@ class UpdateAccessLogSubscriptionCommand extends smithyClient.Command
|
|
|
2720
889
|
})
|
|
2721
890
|
.s("MercuryControlPlane", "UpdateAccessLogSubscription", {})
|
|
2722
891
|
.n("VPCLatticeClient", "UpdateAccessLogSubscriptionCommand")
|
|
2723
|
-
.sc(UpdateAccessLogSubscription$)
|
|
892
|
+
.sc(schemas_0.UpdateAccessLogSubscription$)
|
|
2724
893
|
.build() {
|
|
2725
894
|
}
|
|
2726
895
|
|
|
@@ -2732,7 +901,7 @@ class UpdateListenerCommand extends smithyClient.Command
|
|
|
2732
901
|
})
|
|
2733
902
|
.s("MercuryControlPlane", "UpdateListener", {})
|
|
2734
903
|
.n("VPCLatticeClient", "UpdateListenerCommand")
|
|
2735
|
-
.sc(UpdateListener$)
|
|
904
|
+
.sc(schemas_0.UpdateListener$)
|
|
2736
905
|
.build() {
|
|
2737
906
|
}
|
|
2738
907
|
|
|
@@ -2744,7 +913,7 @@ class UpdateResourceConfigurationCommand extends smithyClient.Command
|
|
|
2744
913
|
})
|
|
2745
914
|
.s("MercuryControlPlane", "UpdateResourceConfiguration", {})
|
|
2746
915
|
.n("VPCLatticeClient", "UpdateResourceConfigurationCommand")
|
|
2747
|
-
.sc(UpdateResourceConfiguration$)
|
|
916
|
+
.sc(schemas_0.UpdateResourceConfiguration$)
|
|
2748
917
|
.build() {
|
|
2749
918
|
}
|
|
2750
919
|
|
|
@@ -2756,7 +925,7 @@ class UpdateResourceGatewayCommand extends smithyClient.Command
|
|
|
2756
925
|
})
|
|
2757
926
|
.s("MercuryControlPlane", "UpdateResourceGateway", {})
|
|
2758
927
|
.n("VPCLatticeClient", "UpdateResourceGatewayCommand")
|
|
2759
|
-
.sc(UpdateResourceGateway$)
|
|
928
|
+
.sc(schemas_0.UpdateResourceGateway$)
|
|
2760
929
|
.build() {
|
|
2761
930
|
}
|
|
2762
931
|
|
|
@@ -2768,7 +937,7 @@ class UpdateRuleCommand extends smithyClient.Command
|
|
|
2768
937
|
})
|
|
2769
938
|
.s("MercuryControlPlane", "UpdateRule", {})
|
|
2770
939
|
.n("VPCLatticeClient", "UpdateRuleCommand")
|
|
2771
|
-
.sc(UpdateRule$)
|
|
940
|
+
.sc(schemas_0.UpdateRule$)
|
|
2772
941
|
.build() {
|
|
2773
942
|
}
|
|
2774
943
|
|
|
@@ -2780,7 +949,7 @@ class UpdateServiceCommand extends smithyClient.Command
|
|
|
2780
949
|
})
|
|
2781
950
|
.s("MercuryControlPlane", "UpdateService", {})
|
|
2782
951
|
.n("VPCLatticeClient", "UpdateServiceCommand")
|
|
2783
|
-
.sc(UpdateService$)
|
|
952
|
+
.sc(schemas_0.UpdateService$)
|
|
2784
953
|
.build() {
|
|
2785
954
|
}
|
|
2786
955
|
|
|
@@ -2792,7 +961,7 @@ class UpdateServiceNetworkCommand extends smithyClient.Command
|
|
|
2792
961
|
})
|
|
2793
962
|
.s("MercuryControlPlane", "UpdateServiceNetwork", {})
|
|
2794
963
|
.n("VPCLatticeClient", "UpdateServiceNetworkCommand")
|
|
2795
|
-
.sc(UpdateServiceNetwork$)
|
|
964
|
+
.sc(schemas_0.UpdateServiceNetwork$)
|
|
2796
965
|
.build() {
|
|
2797
966
|
}
|
|
2798
967
|
|
|
@@ -2804,7 +973,7 @@ class UpdateServiceNetworkVpcAssociationCommand extends smithyClient.Command
|
|
|
2804
973
|
})
|
|
2805
974
|
.s("MercuryControlPlane", "UpdateServiceNetworkVpcAssociation", {})
|
|
2806
975
|
.n("VPCLatticeClient", "UpdateServiceNetworkVpcAssociationCommand")
|
|
2807
|
-
.sc(UpdateServiceNetworkVpcAssociation$)
|
|
976
|
+
.sc(schemas_0.UpdateServiceNetworkVpcAssociation$)
|
|
2808
977
|
.build() {
|
|
2809
978
|
}
|
|
2810
979
|
|
|
@@ -2816,7 +985,7 @@ class UpdateTargetGroupCommand extends smithyClient.Command
|
|
|
2816
985
|
})
|
|
2817
986
|
.s("MercuryControlPlane", "UpdateTargetGroup", {})
|
|
2818
987
|
.n("VPCLatticeClient", "UpdateTargetGroupCommand")
|
|
2819
|
-
.sc(UpdateTargetGroup$)
|
|
988
|
+
.sc(schemas_0.UpdateTargetGroup$)
|
|
2820
989
|
.build() {
|
|
2821
990
|
}
|
|
2822
991
|
|
|
@@ -3100,383 +1269,110 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3100
1269
|
enumerable: true,
|
|
3101
1270
|
get: function () { return smithyClient.Client; }
|
|
3102
1271
|
});
|
|
3103
|
-
exports
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
1272
|
+
Object.defineProperty(exports, "VPCLatticeServiceException", {
|
|
1273
|
+
enumerable: true,
|
|
1274
|
+
get: function () { return VPCLatticeServiceException.VPCLatticeServiceException; }
|
|
1275
|
+
});
|
|
3107
1276
|
exports.AuthPolicyState = AuthPolicyState;
|
|
3108
1277
|
exports.AuthType = AuthType;
|
|
3109
|
-
exports.BatchUpdateRule$ = BatchUpdateRule$;
|
|
3110
1278
|
exports.BatchUpdateRuleCommand = BatchUpdateRuleCommand;
|
|
3111
|
-
exports.BatchUpdateRuleRequest$ = BatchUpdateRuleRequest$;
|
|
3112
|
-
exports.BatchUpdateRuleResponse$ = BatchUpdateRuleResponse$;
|
|
3113
|
-
exports.ConflictException = ConflictException;
|
|
3114
|
-
exports.ConflictException$ = ConflictException$;
|
|
3115
|
-
exports.CreateAccessLogSubscription$ = CreateAccessLogSubscription$;
|
|
3116
1279
|
exports.CreateAccessLogSubscriptionCommand = CreateAccessLogSubscriptionCommand;
|
|
3117
|
-
exports.CreateAccessLogSubscriptionRequest$ = CreateAccessLogSubscriptionRequest$;
|
|
3118
|
-
exports.CreateAccessLogSubscriptionResponse$ = CreateAccessLogSubscriptionResponse$;
|
|
3119
|
-
exports.CreateListener$ = CreateListener$;
|
|
3120
1280
|
exports.CreateListenerCommand = CreateListenerCommand;
|
|
3121
|
-
exports.CreateListenerRequest$ = CreateListenerRequest$;
|
|
3122
|
-
exports.CreateListenerResponse$ = CreateListenerResponse$;
|
|
3123
|
-
exports.CreateResourceConfiguration$ = CreateResourceConfiguration$;
|
|
3124
1281
|
exports.CreateResourceConfigurationCommand = CreateResourceConfigurationCommand;
|
|
3125
|
-
exports.CreateResourceConfigurationRequest$ = CreateResourceConfigurationRequest$;
|
|
3126
|
-
exports.CreateResourceConfigurationResponse$ = CreateResourceConfigurationResponse$;
|
|
3127
|
-
exports.CreateResourceGateway$ = CreateResourceGateway$;
|
|
3128
1282
|
exports.CreateResourceGatewayCommand = CreateResourceGatewayCommand;
|
|
3129
|
-
exports.CreateResourceGatewayRequest$ = CreateResourceGatewayRequest$;
|
|
3130
|
-
exports.CreateResourceGatewayResponse$ = CreateResourceGatewayResponse$;
|
|
3131
|
-
exports.CreateRule$ = CreateRule$;
|
|
3132
1283
|
exports.CreateRuleCommand = CreateRuleCommand;
|
|
3133
|
-
exports.CreateRuleRequest$ = CreateRuleRequest$;
|
|
3134
|
-
exports.CreateRuleResponse$ = CreateRuleResponse$;
|
|
3135
|
-
exports.CreateService$ = CreateService$;
|
|
3136
1284
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
3137
|
-
exports.CreateServiceNetwork$ = CreateServiceNetwork$;
|
|
3138
1285
|
exports.CreateServiceNetworkCommand = CreateServiceNetworkCommand;
|
|
3139
|
-
exports.CreateServiceNetworkRequest$ = CreateServiceNetworkRequest$;
|
|
3140
|
-
exports.CreateServiceNetworkResourceAssociation$ = CreateServiceNetworkResourceAssociation$;
|
|
3141
1286
|
exports.CreateServiceNetworkResourceAssociationCommand = CreateServiceNetworkResourceAssociationCommand;
|
|
3142
|
-
exports.CreateServiceNetworkResourceAssociationRequest$ = CreateServiceNetworkResourceAssociationRequest$;
|
|
3143
|
-
exports.CreateServiceNetworkResourceAssociationResponse$ = CreateServiceNetworkResourceAssociationResponse$;
|
|
3144
|
-
exports.CreateServiceNetworkResponse$ = CreateServiceNetworkResponse$;
|
|
3145
|
-
exports.CreateServiceNetworkServiceAssociation$ = CreateServiceNetworkServiceAssociation$;
|
|
3146
1287
|
exports.CreateServiceNetworkServiceAssociationCommand = CreateServiceNetworkServiceAssociationCommand;
|
|
3147
|
-
exports.CreateServiceNetworkServiceAssociationRequest$ = CreateServiceNetworkServiceAssociationRequest$;
|
|
3148
|
-
exports.CreateServiceNetworkServiceAssociationResponse$ = CreateServiceNetworkServiceAssociationResponse$;
|
|
3149
|
-
exports.CreateServiceNetworkVpcAssociation$ = CreateServiceNetworkVpcAssociation$;
|
|
3150
1288
|
exports.CreateServiceNetworkVpcAssociationCommand = CreateServiceNetworkVpcAssociationCommand;
|
|
3151
|
-
exports.CreateServiceNetworkVpcAssociationRequest$ = CreateServiceNetworkVpcAssociationRequest$;
|
|
3152
|
-
exports.CreateServiceNetworkVpcAssociationResponse$ = CreateServiceNetworkVpcAssociationResponse$;
|
|
3153
|
-
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
3154
|
-
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
3155
|
-
exports.CreateTargetGroup$ = CreateTargetGroup$;
|
|
3156
1289
|
exports.CreateTargetGroupCommand = CreateTargetGroupCommand;
|
|
3157
|
-
exports.CreateTargetGroupRequest$ = CreateTargetGroupRequest$;
|
|
3158
|
-
exports.CreateTargetGroupResponse$ = CreateTargetGroupResponse$;
|
|
3159
|
-
exports.DeleteAccessLogSubscription$ = DeleteAccessLogSubscription$;
|
|
3160
1290
|
exports.DeleteAccessLogSubscriptionCommand = DeleteAccessLogSubscriptionCommand;
|
|
3161
|
-
exports.DeleteAccessLogSubscriptionRequest$ = DeleteAccessLogSubscriptionRequest$;
|
|
3162
|
-
exports.DeleteAccessLogSubscriptionResponse$ = DeleteAccessLogSubscriptionResponse$;
|
|
3163
|
-
exports.DeleteAuthPolicy$ = DeleteAuthPolicy$;
|
|
3164
1291
|
exports.DeleteAuthPolicyCommand = DeleteAuthPolicyCommand;
|
|
3165
|
-
exports.DeleteAuthPolicyRequest$ = DeleteAuthPolicyRequest$;
|
|
3166
|
-
exports.DeleteAuthPolicyResponse$ = DeleteAuthPolicyResponse$;
|
|
3167
|
-
exports.DeleteDomainVerification$ = DeleteDomainVerification$;
|
|
3168
1292
|
exports.DeleteDomainVerificationCommand = DeleteDomainVerificationCommand;
|
|
3169
|
-
exports.DeleteDomainVerificationRequest$ = DeleteDomainVerificationRequest$;
|
|
3170
|
-
exports.DeleteDomainVerificationResponse$ = DeleteDomainVerificationResponse$;
|
|
3171
|
-
exports.DeleteListener$ = DeleteListener$;
|
|
3172
1293
|
exports.DeleteListenerCommand = DeleteListenerCommand;
|
|
3173
|
-
exports.DeleteListenerRequest$ = DeleteListenerRequest$;
|
|
3174
|
-
exports.DeleteListenerResponse$ = DeleteListenerResponse$;
|
|
3175
|
-
exports.DeleteResourceConfiguration$ = DeleteResourceConfiguration$;
|
|
3176
1294
|
exports.DeleteResourceConfigurationCommand = DeleteResourceConfigurationCommand;
|
|
3177
|
-
exports.DeleteResourceConfigurationRequest$ = DeleteResourceConfigurationRequest$;
|
|
3178
|
-
exports.DeleteResourceConfigurationResponse$ = DeleteResourceConfigurationResponse$;
|
|
3179
|
-
exports.DeleteResourceEndpointAssociation$ = DeleteResourceEndpointAssociation$;
|
|
3180
1295
|
exports.DeleteResourceEndpointAssociationCommand = DeleteResourceEndpointAssociationCommand;
|
|
3181
|
-
exports.DeleteResourceEndpointAssociationRequest$ = DeleteResourceEndpointAssociationRequest$;
|
|
3182
|
-
exports.DeleteResourceEndpointAssociationResponse$ = DeleteResourceEndpointAssociationResponse$;
|
|
3183
|
-
exports.DeleteResourceGateway$ = DeleteResourceGateway$;
|
|
3184
1296
|
exports.DeleteResourceGatewayCommand = DeleteResourceGatewayCommand;
|
|
3185
|
-
exports.DeleteResourceGatewayRequest$ = DeleteResourceGatewayRequest$;
|
|
3186
|
-
exports.DeleteResourceGatewayResponse$ = DeleteResourceGatewayResponse$;
|
|
3187
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
3188
1297
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
3189
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
3190
|
-
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
3191
|
-
exports.DeleteRule$ = DeleteRule$;
|
|
3192
1298
|
exports.DeleteRuleCommand = DeleteRuleCommand;
|
|
3193
|
-
exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
3194
|
-
exports.DeleteRuleResponse$ = DeleteRuleResponse$;
|
|
3195
|
-
exports.DeleteService$ = DeleteService$;
|
|
3196
1299
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
3197
|
-
exports.DeleteServiceNetwork$ = DeleteServiceNetwork$;
|
|
3198
1300
|
exports.DeleteServiceNetworkCommand = DeleteServiceNetworkCommand;
|
|
3199
|
-
exports.DeleteServiceNetworkRequest$ = DeleteServiceNetworkRequest$;
|
|
3200
|
-
exports.DeleteServiceNetworkResourceAssociation$ = DeleteServiceNetworkResourceAssociation$;
|
|
3201
1301
|
exports.DeleteServiceNetworkResourceAssociationCommand = DeleteServiceNetworkResourceAssociationCommand;
|
|
3202
|
-
exports.DeleteServiceNetworkResourceAssociationRequest$ = DeleteServiceNetworkResourceAssociationRequest$;
|
|
3203
|
-
exports.DeleteServiceNetworkResourceAssociationResponse$ = DeleteServiceNetworkResourceAssociationResponse$;
|
|
3204
|
-
exports.DeleteServiceNetworkResponse$ = DeleteServiceNetworkResponse$;
|
|
3205
|
-
exports.DeleteServiceNetworkServiceAssociation$ = DeleteServiceNetworkServiceAssociation$;
|
|
3206
1302
|
exports.DeleteServiceNetworkServiceAssociationCommand = DeleteServiceNetworkServiceAssociationCommand;
|
|
3207
|
-
exports.DeleteServiceNetworkServiceAssociationRequest$ = DeleteServiceNetworkServiceAssociationRequest$;
|
|
3208
|
-
exports.DeleteServiceNetworkServiceAssociationResponse$ = DeleteServiceNetworkServiceAssociationResponse$;
|
|
3209
|
-
exports.DeleteServiceNetworkVpcAssociation$ = DeleteServiceNetworkVpcAssociation$;
|
|
3210
1303
|
exports.DeleteServiceNetworkVpcAssociationCommand = DeleteServiceNetworkVpcAssociationCommand;
|
|
3211
|
-
exports.DeleteServiceNetworkVpcAssociationRequest$ = DeleteServiceNetworkVpcAssociationRequest$;
|
|
3212
|
-
exports.DeleteServiceNetworkVpcAssociationResponse$ = DeleteServiceNetworkVpcAssociationResponse$;
|
|
3213
|
-
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
3214
|
-
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
3215
|
-
exports.DeleteTargetGroup$ = DeleteTargetGroup$;
|
|
3216
1304
|
exports.DeleteTargetGroupCommand = DeleteTargetGroupCommand;
|
|
3217
|
-
exports.DeleteTargetGroupRequest$ = DeleteTargetGroupRequest$;
|
|
3218
|
-
exports.DeleteTargetGroupResponse$ = DeleteTargetGroupResponse$;
|
|
3219
|
-
exports.DeregisterTargets$ = DeregisterTargets$;
|
|
3220
1305
|
exports.DeregisterTargetsCommand = DeregisterTargetsCommand;
|
|
3221
|
-
exports.DeregisterTargetsRequest$ = DeregisterTargetsRequest$;
|
|
3222
|
-
exports.DeregisterTargetsResponse$ = DeregisterTargetsResponse$;
|
|
3223
|
-
exports.DnsEntry$ = DnsEntry$;
|
|
3224
|
-
exports.DnsOptions$ = DnsOptions$;
|
|
3225
|
-
exports.DnsResource$ = DnsResource$;
|
|
3226
|
-
exports.DomainVerificationSummary$ = DomainVerificationSummary$;
|
|
3227
|
-
exports.FixedResponseAction$ = FixedResponseAction$;
|
|
3228
|
-
exports.ForwardAction$ = ForwardAction$;
|
|
3229
|
-
exports.GetAccessLogSubscription$ = GetAccessLogSubscription$;
|
|
3230
1306
|
exports.GetAccessLogSubscriptionCommand = GetAccessLogSubscriptionCommand;
|
|
3231
|
-
exports.GetAccessLogSubscriptionRequest$ = GetAccessLogSubscriptionRequest$;
|
|
3232
|
-
exports.GetAccessLogSubscriptionResponse$ = GetAccessLogSubscriptionResponse$;
|
|
3233
|
-
exports.GetAuthPolicy$ = GetAuthPolicy$;
|
|
3234
1307
|
exports.GetAuthPolicyCommand = GetAuthPolicyCommand;
|
|
3235
|
-
exports.GetAuthPolicyRequest$ = GetAuthPolicyRequest$;
|
|
3236
|
-
exports.GetAuthPolicyResponse$ = GetAuthPolicyResponse$;
|
|
3237
|
-
exports.GetDomainVerification$ = GetDomainVerification$;
|
|
3238
1308
|
exports.GetDomainVerificationCommand = GetDomainVerificationCommand;
|
|
3239
|
-
exports.GetDomainVerificationRequest$ = GetDomainVerificationRequest$;
|
|
3240
|
-
exports.GetDomainVerificationResponse$ = GetDomainVerificationResponse$;
|
|
3241
|
-
exports.GetListener$ = GetListener$;
|
|
3242
1309
|
exports.GetListenerCommand = GetListenerCommand;
|
|
3243
|
-
exports.GetListenerRequest$ = GetListenerRequest$;
|
|
3244
|
-
exports.GetListenerResponse$ = GetListenerResponse$;
|
|
3245
|
-
exports.GetResourceConfiguration$ = GetResourceConfiguration$;
|
|
3246
1310
|
exports.GetResourceConfigurationCommand = GetResourceConfigurationCommand;
|
|
3247
|
-
exports.GetResourceConfigurationRequest$ = GetResourceConfigurationRequest$;
|
|
3248
|
-
exports.GetResourceConfigurationResponse$ = GetResourceConfigurationResponse$;
|
|
3249
|
-
exports.GetResourceGateway$ = GetResourceGateway$;
|
|
3250
1311
|
exports.GetResourceGatewayCommand = GetResourceGatewayCommand;
|
|
3251
|
-
exports.GetResourceGatewayRequest$ = GetResourceGatewayRequest$;
|
|
3252
|
-
exports.GetResourceGatewayResponse$ = GetResourceGatewayResponse$;
|
|
3253
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
3254
1312
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
3255
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
3256
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
3257
|
-
exports.GetRule$ = GetRule$;
|
|
3258
1313
|
exports.GetRuleCommand = GetRuleCommand;
|
|
3259
|
-
exports.GetRuleRequest$ = GetRuleRequest$;
|
|
3260
|
-
exports.GetRuleResponse$ = GetRuleResponse$;
|
|
3261
|
-
exports.GetService$ = GetService$;
|
|
3262
1314
|
exports.GetServiceCommand = GetServiceCommand;
|
|
3263
|
-
exports.GetServiceNetwork$ = GetServiceNetwork$;
|
|
3264
1315
|
exports.GetServiceNetworkCommand = GetServiceNetworkCommand;
|
|
3265
|
-
exports.GetServiceNetworkRequest$ = GetServiceNetworkRequest$;
|
|
3266
|
-
exports.GetServiceNetworkResourceAssociation$ = GetServiceNetworkResourceAssociation$;
|
|
3267
1316
|
exports.GetServiceNetworkResourceAssociationCommand = GetServiceNetworkResourceAssociationCommand;
|
|
3268
|
-
exports.GetServiceNetworkResourceAssociationRequest$ = GetServiceNetworkResourceAssociationRequest$;
|
|
3269
|
-
exports.GetServiceNetworkResourceAssociationResponse$ = GetServiceNetworkResourceAssociationResponse$;
|
|
3270
|
-
exports.GetServiceNetworkResponse$ = GetServiceNetworkResponse$;
|
|
3271
|
-
exports.GetServiceNetworkServiceAssociation$ = GetServiceNetworkServiceAssociation$;
|
|
3272
1317
|
exports.GetServiceNetworkServiceAssociationCommand = GetServiceNetworkServiceAssociationCommand;
|
|
3273
|
-
exports.GetServiceNetworkServiceAssociationRequest$ = GetServiceNetworkServiceAssociationRequest$;
|
|
3274
|
-
exports.GetServiceNetworkServiceAssociationResponse$ = GetServiceNetworkServiceAssociationResponse$;
|
|
3275
|
-
exports.GetServiceNetworkVpcAssociation$ = GetServiceNetworkVpcAssociation$;
|
|
3276
1318
|
exports.GetServiceNetworkVpcAssociationCommand = GetServiceNetworkVpcAssociationCommand;
|
|
3277
|
-
exports.GetServiceNetworkVpcAssociationRequest$ = GetServiceNetworkVpcAssociationRequest$;
|
|
3278
|
-
exports.GetServiceNetworkVpcAssociationResponse$ = GetServiceNetworkVpcAssociationResponse$;
|
|
3279
|
-
exports.GetServiceRequest$ = GetServiceRequest$;
|
|
3280
|
-
exports.GetServiceResponse$ = GetServiceResponse$;
|
|
3281
|
-
exports.GetTargetGroup$ = GetTargetGroup$;
|
|
3282
1319
|
exports.GetTargetGroupCommand = GetTargetGroupCommand;
|
|
3283
|
-
exports.GetTargetGroupRequest$ = GetTargetGroupRequest$;
|
|
3284
|
-
exports.GetTargetGroupResponse$ = GetTargetGroupResponse$;
|
|
3285
|
-
exports.HeaderMatch$ = HeaderMatch$;
|
|
3286
|
-
exports.HeaderMatchType$ = HeaderMatchType$;
|
|
3287
|
-
exports.HealthCheckConfig$ = HealthCheckConfig$;
|
|
3288
1320
|
exports.HealthCheckProtocolVersion = HealthCheckProtocolVersion;
|
|
3289
|
-
exports.HttpMatch$ = HttpMatch$;
|
|
3290
|
-
exports.InternalServerException = InternalServerException;
|
|
3291
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
3292
1321
|
exports.IpAddressType = IpAddressType;
|
|
3293
|
-
exports.IpResource$ = IpResource$;
|
|
3294
1322
|
exports.LambdaEventStructureVersion = LambdaEventStructureVersion;
|
|
3295
|
-
exports.ListAccessLogSubscriptions$ = ListAccessLogSubscriptions$;
|
|
3296
1323
|
exports.ListAccessLogSubscriptionsCommand = ListAccessLogSubscriptionsCommand;
|
|
3297
|
-
exports.ListAccessLogSubscriptionsRequest$ = ListAccessLogSubscriptionsRequest$;
|
|
3298
|
-
exports.ListAccessLogSubscriptionsResponse$ = ListAccessLogSubscriptionsResponse$;
|
|
3299
|
-
exports.ListDomainVerifications$ = ListDomainVerifications$;
|
|
3300
1324
|
exports.ListDomainVerificationsCommand = ListDomainVerificationsCommand;
|
|
3301
|
-
exports.ListDomainVerificationsRequest$ = ListDomainVerificationsRequest$;
|
|
3302
|
-
exports.ListDomainVerificationsResponse$ = ListDomainVerificationsResponse$;
|
|
3303
|
-
exports.ListListeners$ = ListListeners$;
|
|
3304
1325
|
exports.ListListenersCommand = ListListenersCommand;
|
|
3305
|
-
exports.ListListenersRequest$ = ListListenersRequest$;
|
|
3306
|
-
exports.ListListenersResponse$ = ListListenersResponse$;
|
|
3307
|
-
exports.ListResourceConfigurations$ = ListResourceConfigurations$;
|
|
3308
1326
|
exports.ListResourceConfigurationsCommand = ListResourceConfigurationsCommand;
|
|
3309
|
-
exports.ListResourceConfigurationsRequest$ = ListResourceConfigurationsRequest$;
|
|
3310
|
-
exports.ListResourceConfigurationsResponse$ = ListResourceConfigurationsResponse$;
|
|
3311
|
-
exports.ListResourceEndpointAssociations$ = ListResourceEndpointAssociations$;
|
|
3312
1327
|
exports.ListResourceEndpointAssociationsCommand = ListResourceEndpointAssociationsCommand;
|
|
3313
|
-
exports.ListResourceEndpointAssociationsRequest$ = ListResourceEndpointAssociationsRequest$;
|
|
3314
|
-
exports.ListResourceEndpointAssociationsResponse$ = ListResourceEndpointAssociationsResponse$;
|
|
3315
|
-
exports.ListResourceGateways$ = ListResourceGateways$;
|
|
3316
1328
|
exports.ListResourceGatewaysCommand = ListResourceGatewaysCommand;
|
|
3317
|
-
exports.ListResourceGatewaysRequest$ = ListResourceGatewaysRequest$;
|
|
3318
|
-
exports.ListResourceGatewaysResponse$ = ListResourceGatewaysResponse$;
|
|
3319
|
-
exports.ListRules$ = ListRules$;
|
|
3320
1329
|
exports.ListRulesCommand = ListRulesCommand;
|
|
3321
|
-
exports.ListRulesRequest$ = ListRulesRequest$;
|
|
3322
|
-
exports.ListRulesResponse$ = ListRulesResponse$;
|
|
3323
|
-
exports.ListServiceNetworkResourceAssociations$ = ListServiceNetworkResourceAssociations$;
|
|
3324
1330
|
exports.ListServiceNetworkResourceAssociationsCommand = ListServiceNetworkResourceAssociationsCommand;
|
|
3325
|
-
exports.ListServiceNetworkResourceAssociationsRequest$ = ListServiceNetworkResourceAssociationsRequest$;
|
|
3326
|
-
exports.ListServiceNetworkResourceAssociationsResponse$ = ListServiceNetworkResourceAssociationsResponse$;
|
|
3327
|
-
exports.ListServiceNetworkServiceAssociations$ = ListServiceNetworkServiceAssociations$;
|
|
3328
1331
|
exports.ListServiceNetworkServiceAssociationsCommand = ListServiceNetworkServiceAssociationsCommand;
|
|
3329
|
-
exports.ListServiceNetworkServiceAssociationsRequest$ = ListServiceNetworkServiceAssociationsRequest$;
|
|
3330
|
-
exports.ListServiceNetworkServiceAssociationsResponse$ = ListServiceNetworkServiceAssociationsResponse$;
|
|
3331
|
-
exports.ListServiceNetworkVpcAssociations$ = ListServiceNetworkVpcAssociations$;
|
|
3332
1332
|
exports.ListServiceNetworkVpcAssociationsCommand = ListServiceNetworkVpcAssociationsCommand;
|
|
3333
|
-
exports.ListServiceNetworkVpcAssociationsRequest$ = ListServiceNetworkVpcAssociationsRequest$;
|
|
3334
|
-
exports.ListServiceNetworkVpcAssociationsResponse$ = ListServiceNetworkVpcAssociationsResponse$;
|
|
3335
|
-
exports.ListServiceNetworkVpcEndpointAssociations$ = ListServiceNetworkVpcEndpointAssociations$;
|
|
3336
1333
|
exports.ListServiceNetworkVpcEndpointAssociationsCommand = ListServiceNetworkVpcEndpointAssociationsCommand;
|
|
3337
|
-
exports.ListServiceNetworkVpcEndpointAssociationsRequest$ = ListServiceNetworkVpcEndpointAssociationsRequest$;
|
|
3338
|
-
exports.ListServiceNetworkVpcEndpointAssociationsResponse$ = ListServiceNetworkVpcEndpointAssociationsResponse$;
|
|
3339
|
-
exports.ListServiceNetworks$ = ListServiceNetworks$;
|
|
3340
1334
|
exports.ListServiceNetworksCommand = ListServiceNetworksCommand;
|
|
3341
|
-
exports.ListServiceNetworksRequest$ = ListServiceNetworksRequest$;
|
|
3342
|
-
exports.ListServiceNetworksResponse$ = ListServiceNetworksResponse$;
|
|
3343
|
-
exports.ListServices$ = ListServices$;
|
|
3344
1335
|
exports.ListServicesCommand = ListServicesCommand;
|
|
3345
|
-
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
3346
|
-
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
3347
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3348
1336
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3349
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3350
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3351
|
-
exports.ListTargetGroups$ = ListTargetGroups$;
|
|
3352
1337
|
exports.ListTargetGroupsCommand = ListTargetGroupsCommand;
|
|
3353
|
-
exports.ListTargetGroupsRequest$ = ListTargetGroupsRequest$;
|
|
3354
|
-
exports.ListTargetGroupsResponse$ = ListTargetGroupsResponse$;
|
|
3355
|
-
exports.ListTargets$ = ListTargets$;
|
|
3356
1338
|
exports.ListTargetsCommand = ListTargetsCommand;
|
|
3357
|
-
exports.ListTargetsRequest$ = ListTargetsRequest$;
|
|
3358
|
-
exports.ListTargetsResponse$ = ListTargetsResponse$;
|
|
3359
1339
|
exports.ListenerProtocol = ListenerProtocol;
|
|
3360
|
-
exports.ListenerSummary$ = ListenerSummary$;
|
|
3361
|
-
exports.Matcher$ = Matcher$;
|
|
3362
|
-
exports.PathMatch$ = PathMatch$;
|
|
3363
|
-
exports.PathMatchType$ = PathMatchType$;
|
|
3364
1340
|
exports.PrivateDnsPreference = PrivateDnsPreference;
|
|
3365
1341
|
exports.ProtocolType = ProtocolType;
|
|
3366
|
-
exports.PutAuthPolicy$ = PutAuthPolicy$;
|
|
3367
1342
|
exports.PutAuthPolicyCommand = PutAuthPolicyCommand;
|
|
3368
|
-
exports.PutAuthPolicyRequest$ = PutAuthPolicyRequest$;
|
|
3369
|
-
exports.PutAuthPolicyResponse$ = PutAuthPolicyResponse$;
|
|
3370
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
3371
1343
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3372
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
3373
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
3374
|
-
exports.RegisterTargets$ = RegisterTargets$;
|
|
3375
1344
|
exports.RegisterTargetsCommand = RegisterTargetsCommand;
|
|
3376
|
-
exports.RegisterTargetsRequest$ = RegisterTargetsRequest$;
|
|
3377
|
-
exports.RegisterTargetsResponse$ = RegisterTargetsResponse$;
|
|
3378
|
-
exports.ResourceConfigurationDefinition$ = ResourceConfigurationDefinition$;
|
|
3379
1345
|
exports.ResourceConfigurationIpAddressType = ResourceConfigurationIpAddressType;
|
|
3380
1346
|
exports.ResourceConfigurationStatus = ResourceConfigurationStatus;
|
|
3381
|
-
exports.ResourceConfigurationSummary$ = ResourceConfigurationSummary$;
|
|
3382
1347
|
exports.ResourceConfigurationType = ResourceConfigurationType;
|
|
3383
|
-
exports.ResourceEndpointAssociationSummary$ = ResourceEndpointAssociationSummary$;
|
|
3384
1348
|
exports.ResourceGatewayIpAddressType = ResourceGatewayIpAddressType;
|
|
3385
1349
|
exports.ResourceGatewayStatus = ResourceGatewayStatus;
|
|
3386
|
-
exports.ResourceGatewaySummary$ = ResourceGatewaySummary$;
|
|
3387
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3388
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3389
|
-
exports.RuleAction$ = RuleAction$;
|
|
3390
|
-
exports.RuleMatch$ = RuleMatch$;
|
|
3391
|
-
exports.RuleSummary$ = RuleSummary$;
|
|
3392
|
-
exports.RuleUpdate$ = RuleUpdate$;
|
|
3393
|
-
exports.RuleUpdateFailure$ = RuleUpdateFailure$;
|
|
3394
|
-
exports.RuleUpdateSuccess$ = RuleUpdateSuccess$;
|
|
3395
|
-
exports.ServiceNetworkEndpointAssociation$ = ServiceNetworkEndpointAssociation$;
|
|
3396
1350
|
exports.ServiceNetworkLogType = ServiceNetworkLogType;
|
|
3397
1351
|
exports.ServiceNetworkResourceAssociationStatus = ServiceNetworkResourceAssociationStatus;
|
|
3398
|
-
exports.ServiceNetworkResourceAssociationSummary$ = ServiceNetworkResourceAssociationSummary$;
|
|
3399
1352
|
exports.ServiceNetworkServiceAssociationStatus = ServiceNetworkServiceAssociationStatus;
|
|
3400
|
-
exports.ServiceNetworkServiceAssociationSummary$ = ServiceNetworkServiceAssociationSummary$;
|
|
3401
|
-
exports.ServiceNetworkSummary$ = ServiceNetworkSummary$;
|
|
3402
1353
|
exports.ServiceNetworkVpcAssociationStatus = ServiceNetworkVpcAssociationStatus;
|
|
3403
|
-
exports.ServiceNetworkVpcAssociationSummary$ = ServiceNetworkVpcAssociationSummary$;
|
|
3404
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3405
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3406
1354
|
exports.ServiceStatus = ServiceStatus;
|
|
3407
|
-
exports.ServiceSummary$ = ServiceSummary$;
|
|
3408
|
-
exports.SharingConfig$ = SharingConfig$;
|
|
3409
|
-
exports.StartDomainVerification$ = StartDomainVerification$;
|
|
3410
1355
|
exports.StartDomainVerificationCommand = StartDomainVerificationCommand;
|
|
3411
|
-
exports.StartDomainVerificationRequest$ = StartDomainVerificationRequest$;
|
|
3412
|
-
exports.StartDomainVerificationResponse$ = StartDomainVerificationResponse$;
|
|
3413
|
-
exports.TagResource$ = TagResource$;
|
|
3414
1356
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3415
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3416
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3417
|
-
exports.Target$ = Target$;
|
|
3418
|
-
exports.TargetFailure$ = TargetFailure$;
|
|
3419
|
-
exports.TargetGroupConfig$ = TargetGroupConfig$;
|
|
3420
1357
|
exports.TargetGroupProtocol = TargetGroupProtocol;
|
|
3421
1358
|
exports.TargetGroupProtocolVersion = TargetGroupProtocolVersion;
|
|
3422
1359
|
exports.TargetGroupStatus = TargetGroupStatus;
|
|
3423
|
-
exports.TargetGroupSummary$ = TargetGroupSummary$;
|
|
3424
1360
|
exports.TargetGroupType = TargetGroupType;
|
|
3425
1361
|
exports.TargetStatus = TargetStatus;
|
|
3426
|
-
exports.TargetSummary$ = TargetSummary$;
|
|
3427
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3428
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3429
|
-
exports.TxtMethodConfig$ = TxtMethodConfig$;
|
|
3430
|
-
exports.UntagResource$ = UntagResource$;
|
|
3431
1362
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3432
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3433
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3434
|
-
exports.UpdateAccessLogSubscription$ = UpdateAccessLogSubscription$;
|
|
3435
1363
|
exports.UpdateAccessLogSubscriptionCommand = UpdateAccessLogSubscriptionCommand;
|
|
3436
|
-
exports.UpdateAccessLogSubscriptionRequest$ = UpdateAccessLogSubscriptionRequest$;
|
|
3437
|
-
exports.UpdateAccessLogSubscriptionResponse$ = UpdateAccessLogSubscriptionResponse$;
|
|
3438
|
-
exports.UpdateListener$ = UpdateListener$;
|
|
3439
1364
|
exports.UpdateListenerCommand = UpdateListenerCommand;
|
|
3440
|
-
exports.UpdateListenerRequest$ = UpdateListenerRequest$;
|
|
3441
|
-
exports.UpdateListenerResponse$ = UpdateListenerResponse$;
|
|
3442
|
-
exports.UpdateResourceConfiguration$ = UpdateResourceConfiguration$;
|
|
3443
1365
|
exports.UpdateResourceConfigurationCommand = UpdateResourceConfigurationCommand;
|
|
3444
|
-
exports.UpdateResourceConfigurationRequest$ = UpdateResourceConfigurationRequest$;
|
|
3445
|
-
exports.UpdateResourceConfigurationResponse$ = UpdateResourceConfigurationResponse$;
|
|
3446
|
-
exports.UpdateResourceGateway$ = UpdateResourceGateway$;
|
|
3447
1366
|
exports.UpdateResourceGatewayCommand = UpdateResourceGatewayCommand;
|
|
3448
|
-
exports.UpdateResourceGatewayRequest$ = UpdateResourceGatewayRequest$;
|
|
3449
|
-
exports.UpdateResourceGatewayResponse$ = UpdateResourceGatewayResponse$;
|
|
3450
|
-
exports.UpdateRule$ = UpdateRule$;
|
|
3451
1367
|
exports.UpdateRuleCommand = UpdateRuleCommand;
|
|
3452
|
-
exports.UpdateRuleRequest$ = UpdateRuleRequest$;
|
|
3453
|
-
exports.UpdateRuleResponse$ = UpdateRuleResponse$;
|
|
3454
|
-
exports.UpdateService$ = UpdateService$;
|
|
3455
1368
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
3456
|
-
exports.UpdateServiceNetwork$ = UpdateServiceNetwork$;
|
|
3457
1369
|
exports.UpdateServiceNetworkCommand = UpdateServiceNetworkCommand;
|
|
3458
|
-
exports.UpdateServiceNetworkRequest$ = UpdateServiceNetworkRequest$;
|
|
3459
|
-
exports.UpdateServiceNetworkResponse$ = UpdateServiceNetworkResponse$;
|
|
3460
|
-
exports.UpdateServiceNetworkVpcAssociation$ = UpdateServiceNetworkVpcAssociation$;
|
|
3461
1370
|
exports.UpdateServiceNetworkVpcAssociationCommand = UpdateServiceNetworkVpcAssociationCommand;
|
|
3462
|
-
exports.UpdateServiceNetworkVpcAssociationRequest$ = UpdateServiceNetworkVpcAssociationRequest$;
|
|
3463
|
-
exports.UpdateServiceNetworkVpcAssociationResponse$ = UpdateServiceNetworkVpcAssociationResponse$;
|
|
3464
|
-
exports.UpdateServiceRequest$ = UpdateServiceRequest$;
|
|
3465
|
-
exports.UpdateServiceResponse$ = UpdateServiceResponse$;
|
|
3466
|
-
exports.UpdateTargetGroup$ = UpdateTargetGroup$;
|
|
3467
1371
|
exports.UpdateTargetGroupCommand = UpdateTargetGroupCommand;
|
|
3468
|
-
exports.UpdateTargetGroupRequest$ = UpdateTargetGroupRequest$;
|
|
3469
|
-
exports.UpdateTargetGroupResponse$ = UpdateTargetGroupResponse$;
|
|
3470
1372
|
exports.VPCLattice = VPCLattice;
|
|
3471
1373
|
exports.VPCLatticeClient = VPCLatticeClient;
|
|
3472
|
-
exports.VPCLatticeServiceException = VPCLatticeServiceException;
|
|
3473
|
-
exports.VPCLatticeServiceException$ = VPCLatticeServiceException$;
|
|
3474
|
-
exports.ValidationException = ValidationException;
|
|
3475
|
-
exports.ValidationException$ = ValidationException$;
|
|
3476
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
3477
1374
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3478
1375
|
exports.VerificationStatus = VerificationStatus;
|
|
3479
|
-
exports.WeightedTargetGroup$ = WeightedTargetGroup$;
|
|
3480
1376
|
exports.paginateListAccessLogSubscriptions = paginateListAccessLogSubscriptions;
|
|
3481
1377
|
exports.paginateListDomainVerifications = paginateListDomainVerifications;
|
|
3482
1378
|
exports.paginateListListeners = paginateListListeners;
|
|
@@ -3492,3 +1388,15 @@ exports.paginateListServiceNetworks = paginateListServiceNetworks;
|
|
|
3492
1388
|
exports.paginateListServices = paginateListServices;
|
|
3493
1389
|
exports.paginateListTargetGroups = paginateListTargetGroups;
|
|
3494
1390
|
exports.paginateListTargets = paginateListTargets;
|
|
1391
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1392
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1393
|
+
enumerable: true,
|
|
1394
|
+
get: function () { return schemas_0[k]; }
|
|
1395
|
+
});
|
|
1396
|
+
});
|
|
1397
|
+
Object.keys(errors).forEach(function (k) {
|
|
1398
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1399
|
+
enumerable: true,
|
|
1400
|
+
get: function () { return errors[k]; }
|
|
1401
|
+
});
|
|
1402
|
+
});
|