@aws-sdk/client-vpc-lattice 3.1075.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +2301 -15
- package/dist-es/schemas/schemas_0.js +11 -10
- package/dist-types/commands/CreateServiceCommand.d.ts +2 -0
- package/dist-types/commands/GetServiceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/VPCLatticeServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -117
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1924
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultVPCLatticeHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "vpc-lattice",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultVPCLatticeHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1978 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://vpc-lattice-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://vpc-lattice-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://vpc-lattice.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://vpc-lattice.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class VPCLatticeServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, VPCLatticeServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends VPCLatticeServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ConflictException extends VPCLatticeServiceException {
|
|
152
|
+
name = "ConflictException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
resourceId;
|
|
155
|
+
resourceType;
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ConflictException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
163
|
+
this.resourceId = opts.resourceId;
|
|
164
|
+
this.resourceType = opts.resourceType;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServerException extends VPCLatticeServiceException {
|
|
168
|
+
name = "InternalServerException";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
$retryable = {};
|
|
171
|
+
retryAfterSeconds;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InternalServerException",
|
|
175
|
+
$fault: "server",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
179
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends VPCLatticeServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
resourceId;
|
|
186
|
+
resourceType;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ResourceNotFoundException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
194
|
+
this.resourceId = opts.resourceId;
|
|
195
|
+
this.resourceType = opts.resourceType;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class ThrottlingException extends VPCLatticeServiceException {
|
|
199
|
+
name = "ThrottlingException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
$retryable = {
|
|
202
|
+
throttling: true,
|
|
203
|
+
};
|
|
204
|
+
serviceCode;
|
|
205
|
+
quotaCode;
|
|
206
|
+
retryAfterSeconds;
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "ThrottlingException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
214
|
+
this.serviceCode = opts.serviceCode;
|
|
215
|
+
this.quotaCode = opts.quotaCode;
|
|
216
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ValidationException extends VPCLatticeServiceException {
|
|
220
|
+
name = "ValidationException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
reason;
|
|
223
|
+
fieldList;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ValidationException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
231
|
+
this.reason = opts.reason;
|
|
232
|
+
this.fieldList = opts.fieldList;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class ServiceQuotaExceededException extends VPCLatticeServiceException {
|
|
236
|
+
name = "ServiceQuotaExceededException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
resourceId;
|
|
239
|
+
resourceType;
|
|
240
|
+
serviceCode;
|
|
241
|
+
quotaCode;
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "ServiceQuotaExceededException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
249
|
+
this.resourceId = opts.resourceId;
|
|
250
|
+
this.resourceType = opts.resourceType;
|
|
251
|
+
this.serviceCode = opts.serviceCode;
|
|
252
|
+
this.quotaCode = opts.quotaCode;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
const _ADE = "AccessDeniedException";
|
|
257
|
+
const _ALSL = "AccessLogSubscriptionList";
|
|
258
|
+
const _ALSS = "AccessLogSubscriptionSummary";
|
|
259
|
+
const _AR = "ArnResource";
|
|
260
|
+
const _BUR = "BatchUpdateRule";
|
|
261
|
+
const _BURR = "BatchUpdateRuleRequest";
|
|
262
|
+
const _BURRa = "BatchUpdateRuleResponse";
|
|
263
|
+
const _CALS = "CreateAccessLogSubscription";
|
|
264
|
+
const _CALSR = "CreateAccessLogSubscriptionRequest";
|
|
265
|
+
const _CALSRr = "CreateAccessLogSubscriptionResponse";
|
|
266
|
+
const _CE = "ConflictException";
|
|
267
|
+
const _CL = "CreateListener";
|
|
268
|
+
const _CLR = "CreateListenerRequest";
|
|
269
|
+
const _CLRr = "CreateListenerResponse";
|
|
270
|
+
const _CR = "CreateRule";
|
|
271
|
+
const _CRC = "CreateResourceConfiguration";
|
|
272
|
+
const _CRCR = "CreateResourceConfigurationRequest";
|
|
273
|
+
const _CRCRr = "CreateResourceConfigurationResponse";
|
|
274
|
+
const _CRG = "CreateResourceGateway";
|
|
275
|
+
const _CRGR = "CreateResourceGatewayRequest";
|
|
276
|
+
const _CRGRr = "CreateResourceGatewayResponse";
|
|
277
|
+
const _CRR = "CreateRuleRequest";
|
|
278
|
+
const _CRRr = "CreateRuleResponse";
|
|
279
|
+
const _CS = "CreateService";
|
|
280
|
+
const _CSN = "CreateServiceNetwork";
|
|
281
|
+
const _CSNR = "CreateServiceNetworkRequest";
|
|
282
|
+
const _CSNRA = "CreateServiceNetworkResourceAssociation";
|
|
283
|
+
const _CSNRAR = "CreateServiceNetworkResourceAssociationRequest";
|
|
284
|
+
const _CSNRARr = "CreateServiceNetworkResourceAssociationResponse";
|
|
285
|
+
const _CSNRr = "CreateServiceNetworkResponse";
|
|
286
|
+
const _CSNSA = "CreateServiceNetworkServiceAssociation";
|
|
287
|
+
const _CSNSAR = "CreateServiceNetworkServiceAssociationRequest";
|
|
288
|
+
const _CSNSARr = "CreateServiceNetworkServiceAssociationResponse";
|
|
289
|
+
const _CSNVA = "CreateServiceNetworkVpcAssociation";
|
|
290
|
+
const _CSNVAR = "CreateServiceNetworkVpcAssociationRequest";
|
|
291
|
+
const _CSNVARr = "CreateServiceNetworkVpcAssociationResponse";
|
|
292
|
+
const _CSR = "CreateServiceRequest";
|
|
293
|
+
const _CSRr = "CreateServiceResponse";
|
|
294
|
+
const _CTG = "CreateTargetGroup";
|
|
295
|
+
const _CTGR = "CreateTargetGroupRequest";
|
|
296
|
+
const _CTGRr = "CreateTargetGroupResponse";
|
|
297
|
+
const _DALS = "DeleteAccessLogSubscription";
|
|
298
|
+
const _DALSR = "DeleteAccessLogSubscriptionRequest";
|
|
299
|
+
const _DALSRe = "DeleteAccessLogSubscriptionResponse";
|
|
300
|
+
const _DAP = "DeleteAuthPolicy";
|
|
301
|
+
const _DAPR = "DeleteAuthPolicyRequest";
|
|
302
|
+
const _DAPRe = "DeleteAuthPolicyResponse";
|
|
303
|
+
const _DDV = "DeleteDomainVerification";
|
|
304
|
+
const _DDVR = "DeleteDomainVerificationRequest";
|
|
305
|
+
const _DDVRe = "DeleteDomainVerificationResponse";
|
|
306
|
+
const _DE = "DnsEntry";
|
|
307
|
+
const _DL = "DeleteListener";
|
|
308
|
+
const _DLR = "DeleteListenerRequest";
|
|
309
|
+
const _DLRe = "DeleteListenerResponse";
|
|
310
|
+
const _DO = "DnsOptions";
|
|
311
|
+
const _DR = "DnsResource";
|
|
312
|
+
const _DRC = "DeleteResourceConfiguration";
|
|
313
|
+
const _DRCR = "DeleteResourceConfigurationRequest";
|
|
314
|
+
const _DRCRe = "DeleteResourceConfigurationResponse";
|
|
315
|
+
const _DREA = "DeleteResourceEndpointAssociation";
|
|
316
|
+
const _DREAR = "DeleteResourceEndpointAssociationRequest";
|
|
317
|
+
const _DREARe = "DeleteResourceEndpointAssociationResponse";
|
|
318
|
+
const _DRG = "DeleteResourceGateway";
|
|
319
|
+
const _DRGR = "DeleteResourceGatewayRequest";
|
|
320
|
+
const _DRGRe = "DeleteResourceGatewayResponse";
|
|
321
|
+
const _DRP = "DeleteResourcePolicy";
|
|
322
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
323
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
324
|
+
const _DRR = "DeleteRuleRequest";
|
|
325
|
+
const _DRRe = "DeleteRuleResponse";
|
|
326
|
+
const _DRe = "DeleteRule";
|
|
327
|
+
const _DS = "DeleteService";
|
|
328
|
+
const _DSN = "DeleteServiceNetwork";
|
|
329
|
+
const _DSNR = "DeleteServiceNetworkRequest";
|
|
330
|
+
const _DSNRA = "DeleteServiceNetworkResourceAssociation";
|
|
331
|
+
const _DSNRAR = "DeleteServiceNetworkResourceAssociationRequest";
|
|
332
|
+
const _DSNRARe = "DeleteServiceNetworkResourceAssociationResponse";
|
|
333
|
+
const _DSNRe = "DeleteServiceNetworkResponse";
|
|
334
|
+
const _DSNSA = "DeleteServiceNetworkServiceAssociation";
|
|
335
|
+
const _DSNSAR = "DeleteServiceNetworkServiceAssociationRequest";
|
|
336
|
+
const _DSNSARe = "DeleteServiceNetworkServiceAssociationResponse";
|
|
337
|
+
const _DSNVA = "DeleteServiceNetworkVpcAssociation";
|
|
338
|
+
const _DSNVAR = "DeleteServiceNetworkVpcAssociationRequest";
|
|
339
|
+
const _DSNVARe = "DeleteServiceNetworkVpcAssociationResponse";
|
|
340
|
+
const _DSR = "DeleteServiceRequest";
|
|
341
|
+
const _DSRe = "DeleteServiceResponse";
|
|
342
|
+
const _DT = "DeregisterTargets";
|
|
343
|
+
const _DTG = "DeleteTargetGroup";
|
|
344
|
+
const _DTGR = "DeleteTargetGroupRequest";
|
|
345
|
+
const _DTGRe = "DeleteTargetGroupResponse";
|
|
346
|
+
const _DTR = "DeregisterTargetsRequest";
|
|
347
|
+
const _DTRe = "DeregisterTargetsResponse";
|
|
348
|
+
const _DVL = "DomainVerificationList";
|
|
349
|
+
const _DVS = "DomainVerificationSummary";
|
|
350
|
+
const _FA = "ForwardAction";
|
|
351
|
+
const _FRA = "FixedResponseAction";
|
|
352
|
+
const _GALS = "GetAccessLogSubscription";
|
|
353
|
+
const _GALSR = "GetAccessLogSubscriptionRequest";
|
|
354
|
+
const _GALSRe = "GetAccessLogSubscriptionResponse";
|
|
355
|
+
const _GAP = "GetAuthPolicy";
|
|
356
|
+
const _GAPR = "GetAuthPolicyRequest";
|
|
357
|
+
const _GAPRe = "GetAuthPolicyResponse";
|
|
358
|
+
const _GDV = "GetDomainVerification";
|
|
359
|
+
const _GDVR = "GetDomainVerificationRequest";
|
|
360
|
+
const _GDVRe = "GetDomainVerificationResponse";
|
|
361
|
+
const _GL = "GetListener";
|
|
362
|
+
const _GLR = "GetListenerRequest";
|
|
363
|
+
const _GLRe = "GetListenerResponse";
|
|
364
|
+
const _GR = "GetRule";
|
|
365
|
+
const _GRC = "GetResourceConfiguration";
|
|
366
|
+
const _GRCR = "GetResourceConfigurationRequest";
|
|
367
|
+
const _GRCRe = "GetResourceConfigurationResponse";
|
|
368
|
+
const _GRG = "GetResourceGateway";
|
|
369
|
+
const _GRGR = "GetResourceGatewayRequest";
|
|
370
|
+
const _GRGRe = "GetResourceGatewayResponse";
|
|
371
|
+
const _GRP = "GetResourcePolicy";
|
|
372
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
373
|
+
const _GRPRe = "GetResourcePolicyResponse";
|
|
374
|
+
const _GRR = "GetRuleRequest";
|
|
375
|
+
const _GRRe = "GetRuleResponse";
|
|
376
|
+
const _GS = "GetService";
|
|
377
|
+
const _GSN = "GetServiceNetwork";
|
|
378
|
+
const _GSNR = "GetServiceNetworkRequest";
|
|
379
|
+
const _GSNRA = "GetServiceNetworkResourceAssociation";
|
|
380
|
+
const _GSNRAR = "GetServiceNetworkResourceAssociationRequest";
|
|
381
|
+
const _GSNRARe = "GetServiceNetworkResourceAssociationResponse";
|
|
382
|
+
const _GSNRe = "GetServiceNetworkResponse";
|
|
383
|
+
const _GSNSA = "GetServiceNetworkServiceAssociation";
|
|
384
|
+
const _GSNSAR = "GetServiceNetworkServiceAssociationRequest";
|
|
385
|
+
const _GSNSARe = "GetServiceNetworkServiceAssociationResponse";
|
|
386
|
+
const _GSNVA = "GetServiceNetworkVpcAssociation";
|
|
387
|
+
const _GSNVAR = "GetServiceNetworkVpcAssociationRequest";
|
|
388
|
+
const _GSNVARe = "GetServiceNetworkVpcAssociationResponse";
|
|
389
|
+
const _GSR = "GetServiceRequest";
|
|
390
|
+
const _GSRe = "GetServiceResponse";
|
|
391
|
+
const _GTG = "GetTargetGroup";
|
|
392
|
+
const _GTGR = "GetTargetGroupRequest";
|
|
393
|
+
const _GTGRe = "GetTargetGroupResponse";
|
|
394
|
+
const _HCC = "HealthCheckConfig";
|
|
395
|
+
const _HM = "HeaderMatch";
|
|
396
|
+
const _HML = "HeaderMatchList";
|
|
397
|
+
const _HMT = "HeaderMatchType";
|
|
398
|
+
const _HMt = "HttpMatch";
|
|
399
|
+
const _IR = "IpResource";
|
|
400
|
+
const _ISE = "InternalServerException";
|
|
401
|
+
const _LALS = "ListAccessLogSubscriptions";
|
|
402
|
+
const _LALSR = "ListAccessLogSubscriptionsRequest";
|
|
403
|
+
const _LALSRi = "ListAccessLogSubscriptionsResponse";
|
|
404
|
+
const _LDV = "ListDomainVerifications";
|
|
405
|
+
const _LDVR = "ListDomainVerificationsRequest";
|
|
406
|
+
const _LDVRi = "ListDomainVerificationsResponse";
|
|
407
|
+
const _LL = "ListListeners";
|
|
408
|
+
const _LLR = "ListListenersRequest";
|
|
409
|
+
const _LLRi = "ListListenersResponse";
|
|
410
|
+
const _LR = "ListRules";
|
|
411
|
+
const _LRC = "ListResourceConfigurations";
|
|
412
|
+
const _LRCR = "ListResourceConfigurationsRequest";
|
|
413
|
+
const _LRCRi = "ListResourceConfigurationsResponse";
|
|
414
|
+
const _LREA = "ListResourceEndpointAssociations";
|
|
415
|
+
const _LREAR = "ListResourceEndpointAssociationsRequest";
|
|
416
|
+
const _LREARi = "ListResourceEndpointAssociationsResponse";
|
|
417
|
+
const _LRG = "ListResourceGateways";
|
|
418
|
+
const _LRGR = "ListResourceGatewaysRequest";
|
|
419
|
+
const _LRGRi = "ListResourceGatewaysResponse";
|
|
420
|
+
const _LRR = "ListRulesRequest";
|
|
421
|
+
const _LRRi = "ListRulesResponse";
|
|
422
|
+
const _LS = "ListenerSummary";
|
|
423
|
+
const _LSL = "ListenerSummaryList";
|
|
424
|
+
const _LSN = "ListServiceNetworks";
|
|
425
|
+
const _LSNR = "ListServiceNetworksRequest";
|
|
426
|
+
const _LSNRA = "ListServiceNetworkResourceAssociations";
|
|
427
|
+
const _LSNRAR = "ListServiceNetworkResourceAssociationsRequest";
|
|
428
|
+
const _LSNRARi = "ListServiceNetworkResourceAssociationsResponse";
|
|
429
|
+
const _LSNRi = "ListServiceNetworksResponse";
|
|
430
|
+
const _LSNSA = "ListServiceNetworkServiceAssociations";
|
|
431
|
+
const _LSNSAR = "ListServiceNetworkServiceAssociationsRequest";
|
|
432
|
+
const _LSNSARi = "ListServiceNetworkServiceAssociationsResponse";
|
|
433
|
+
const _LSNVA = "ListServiceNetworkVpcAssociations";
|
|
434
|
+
const _LSNVAR = "ListServiceNetworkVpcAssociationsRequest";
|
|
435
|
+
const _LSNVARi = "ListServiceNetworkVpcAssociationsResponse";
|
|
436
|
+
const _LSNVEA = "ListServiceNetworkVpcEndpointAssociations";
|
|
437
|
+
const _LSNVEAR = "ListServiceNetworkVpcEndpointAssociationsRequest";
|
|
438
|
+
const _LSNVEARi = "ListServiceNetworkVpcEndpointAssociationsResponse";
|
|
439
|
+
const _LSR = "ListServicesRequest";
|
|
440
|
+
const _LSRi = "ListServicesResponse";
|
|
441
|
+
const _LSi = "ListServices";
|
|
442
|
+
const _LT = "ListTargets";
|
|
443
|
+
const _LTFR = "ListTagsForResource";
|
|
444
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
445
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
446
|
+
const _LTG = "ListTargetGroups";
|
|
447
|
+
const _LTGR = "ListTargetGroupsRequest";
|
|
448
|
+
const _LTGRi = "ListTargetGroupsResponse";
|
|
449
|
+
const _LTR = "ListTargetsRequest";
|
|
450
|
+
const _LTRi = "ListTargetsResponse";
|
|
451
|
+
const _M = "Matcher";
|
|
452
|
+
const _PAP = "PutAuthPolicy";
|
|
453
|
+
const _PAPR = "PutAuthPolicyRequest";
|
|
454
|
+
const _PAPRu = "PutAuthPolicyResponse";
|
|
455
|
+
const _PM = "PathMatch";
|
|
456
|
+
const _PMT = "PathMatchType";
|
|
457
|
+
const _PRP = "PutResourcePolicy";
|
|
458
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
459
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
460
|
+
const _RA = "Retry-After";
|
|
461
|
+
const _RAu = "RuleAction";
|
|
462
|
+
const _RCD = "ResourceConfigurationDefinition";
|
|
463
|
+
const _RCS = "ResourceConfigurationSummary";
|
|
464
|
+
const _RCSL = "ResourceConfigurationSummaryList";
|
|
465
|
+
const _REAL = "ResourceEndpointAssociationList";
|
|
466
|
+
const _REAS = "ResourceEndpointAssociationSummary";
|
|
467
|
+
const _RGL = "ResourceGatewayList";
|
|
468
|
+
const _RGS = "ResourceGatewaySummary";
|
|
469
|
+
const _RM = "RuleMatch";
|
|
470
|
+
const _RNFE = "ResourceNotFoundException";
|
|
471
|
+
const _RS = "RuleSummary";
|
|
472
|
+
const _RSL = "RuleSummaryList";
|
|
473
|
+
const _RT = "RegisterTargets";
|
|
474
|
+
const _RTR = "RegisterTargetsRequest";
|
|
475
|
+
const _RTRe = "RegisterTargetsResponse";
|
|
476
|
+
const _RU = "RuleUpdate";
|
|
477
|
+
const _RUF = "RuleUpdateFailure";
|
|
478
|
+
const _RUFL = "RuleUpdateFailureList";
|
|
479
|
+
const _RUL = "RuleUpdateList";
|
|
480
|
+
const _RUS = "RuleUpdateSuccess";
|
|
481
|
+
const _RUSL = "RuleUpdateSuccessList";
|
|
482
|
+
const _SC = "SharingConfig";
|
|
483
|
+
const _SDV = "StartDomainVerification";
|
|
484
|
+
const _SDVR = "StartDomainVerificationRequest";
|
|
485
|
+
const _SDVRt = "StartDomainVerificationResponse";
|
|
486
|
+
const _SL = "ServiceList";
|
|
487
|
+
const _SNEA = "ServiceNetworkEndpointAssociation";
|
|
488
|
+
const _SNL = "ServiceNetworkList";
|
|
489
|
+
const _SNRAL = "ServiceNetworkResourceAssociationList";
|
|
490
|
+
const _SNRAS = "ServiceNetworkResourceAssociationSummary";
|
|
491
|
+
const _SNS = "ServiceNetworkSummary";
|
|
492
|
+
const _SNSAL = "ServiceNetworkServiceAssociationList";
|
|
493
|
+
const _SNSAS = "ServiceNetworkServiceAssociationSummary";
|
|
494
|
+
const _SNVAL = "ServiceNetworkVpcAssociationList";
|
|
495
|
+
const _SNVAS = "ServiceNetworkVpcAssociationSummary";
|
|
496
|
+
const _SNVEAL = "ServiceNetworkVpcEndpointAssociationList";
|
|
497
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
498
|
+
const _SS = "ServiceSummary";
|
|
499
|
+
const _T = "Target";
|
|
500
|
+
const _TE = "ThrottlingException";
|
|
501
|
+
const _TF = "TargetFailure";
|
|
502
|
+
const _TFL = "TargetFailureList";
|
|
503
|
+
const _TGC = "TargetGroupConfig";
|
|
504
|
+
const _TGL = "TargetGroupList";
|
|
505
|
+
const _TGS = "TargetGroupSummary";
|
|
506
|
+
const _TL = "TargetList";
|
|
507
|
+
const _TMC = "TxtMethodConfig";
|
|
508
|
+
const _TR = "TagResource";
|
|
509
|
+
const _TRR = "TagResourceRequest";
|
|
510
|
+
const _TRRa = "TagResourceResponse";
|
|
511
|
+
const _TS = "TargetSummary";
|
|
512
|
+
const _TSL = "TargetSummaryList";
|
|
513
|
+
const _UALS = "UpdateAccessLogSubscription";
|
|
514
|
+
const _UALSR = "UpdateAccessLogSubscriptionRequest";
|
|
515
|
+
const _UALSRp = "UpdateAccessLogSubscriptionResponse";
|
|
516
|
+
const _UL = "UpdateListener";
|
|
517
|
+
const _ULR = "UpdateListenerRequest";
|
|
518
|
+
const _ULRp = "UpdateListenerResponse";
|
|
519
|
+
const _UR = "UntagResource";
|
|
520
|
+
const _URC = "UpdateResourceConfiguration";
|
|
521
|
+
const _URCR = "UpdateResourceConfigurationRequest";
|
|
522
|
+
const _URCRp = "UpdateResourceConfigurationResponse";
|
|
523
|
+
const _URG = "UpdateResourceGateway";
|
|
524
|
+
const _URGR = "UpdateResourceGatewayRequest";
|
|
525
|
+
const _URGRp = "UpdateResourceGatewayResponse";
|
|
526
|
+
const _URR = "UntagResourceRequest";
|
|
527
|
+
const _URRn = "UntagResourceResponse";
|
|
528
|
+
const _URRp = "UpdateRuleRequest";
|
|
529
|
+
const _URRpd = "UpdateRuleResponse";
|
|
530
|
+
const _URp = "UpdateRule";
|
|
531
|
+
const _US = "UpdateService";
|
|
532
|
+
const _USN = "UpdateServiceNetwork";
|
|
533
|
+
const _USNR = "UpdateServiceNetworkRequest";
|
|
534
|
+
const _USNRp = "UpdateServiceNetworkResponse";
|
|
535
|
+
const _USNVA = "UpdateServiceNetworkVpcAssociation";
|
|
536
|
+
const _USNVAR = "UpdateServiceNetworkVpcAssociationRequest";
|
|
537
|
+
const _USNVARp = "UpdateServiceNetworkVpcAssociationResponse";
|
|
538
|
+
const _USR = "UpdateServiceRequest";
|
|
539
|
+
const _USRp = "UpdateServiceResponse";
|
|
540
|
+
const _UTG = "UpdateTargetGroup";
|
|
541
|
+
const _UTGR = "UpdateTargetGroupRequest";
|
|
542
|
+
const _UTGRp = "UpdateTargetGroupResponse";
|
|
543
|
+
const _VE = "ValidationException";
|
|
544
|
+
const _VEF = "ValidationExceptionField";
|
|
545
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
546
|
+
const _WTG = "WeightedTargetGroup";
|
|
547
|
+
const _WTGL = "WeightedTargetGroupList";
|
|
548
|
+
const _a = "arn";
|
|
549
|
+
const _aATSSN = "allowAssociationToShareableServiceNetwork";
|
|
550
|
+
const _aLSI = "accessLogSubscriptionIdentifier";
|
|
551
|
+
const _aM = "amazonManaged";
|
|
552
|
+
const _aR = "arnResource";
|
|
553
|
+
const _aT = "authType";
|
|
554
|
+
const _ac = "action";
|
|
555
|
+
const _c = "client";
|
|
556
|
+
const _cA = "createdAt";
|
|
557
|
+
const _cAe = "certificateArn";
|
|
558
|
+
const _cB = "createdBy";
|
|
559
|
+
const _cDN = "customDomainName";
|
|
560
|
+
const _cS = "caseSensitive";
|
|
561
|
+
const _cT = "clientToken";
|
|
562
|
+
const _co = "config";
|
|
563
|
+
const _con = "contains";
|
|
564
|
+
const _dA = "destinationArn";
|
|
565
|
+
const _dAe = "defaultAction";
|
|
566
|
+
const _dE = "dnsEntry";
|
|
567
|
+
const _dN = "domainName";
|
|
568
|
+
const _dO = "dnsOptions";
|
|
569
|
+
const _dR = "dnsResource";
|
|
570
|
+
const _dVA = "domainVerificationArn";
|
|
571
|
+
const _dVI = "domainVerificationIdentifier";
|
|
572
|
+
const _dVIo = "domainVerificationId";
|
|
573
|
+
const _dVS = "domainVerificationStatus";
|
|
574
|
+
const _e = "error";
|
|
575
|
+
const _en = "enabled";
|
|
576
|
+
const _ex = "exact";
|
|
577
|
+
const _f = "forward";
|
|
578
|
+
const _fC = "failureCode";
|
|
579
|
+
const _fL = "fieldList";
|
|
580
|
+
const _fM = "failureMessage";
|
|
581
|
+
const _fR = "failureReason";
|
|
582
|
+
const _fRi = "fixedResponse";
|
|
583
|
+
const _gD = "groupDomain";
|
|
584
|
+
const _h = "http";
|
|
585
|
+
const _hC = "healthCheck";
|
|
586
|
+
const _hCIS = "healthCheckIntervalSeconds";
|
|
587
|
+
const _hCTS = "healthCheckTimeoutSeconds";
|
|
588
|
+
const _hCt = "httpCode";
|
|
589
|
+
const _hE = "httpError";
|
|
590
|
+
const _hH = "httpHeader";
|
|
591
|
+
const _hM = "headerMatches";
|
|
592
|
+
const _hMt = "httpMatch";
|
|
593
|
+
const _hQ = "httpQuery";
|
|
594
|
+
const _hTC = "healthyThresholdCount";
|
|
595
|
+
const _hZI = "hostedZoneId";
|
|
596
|
+
const _i = "id";
|
|
597
|
+
const _iA = "ipAddress";
|
|
598
|
+
const _iAPE = "ipv4AddressesPerEni";
|
|
599
|
+
const _iAT = "ipAddressType";
|
|
600
|
+
const _iC = "includeChildren";
|
|
601
|
+
const _iD = "isDefault";
|
|
602
|
+
const _iMA = "isManagedAssociation";
|
|
603
|
+
const _iR = "ipResource";
|
|
604
|
+
const _iTS = "idleTimeoutSeconds";
|
|
605
|
+
const _it = "items";
|
|
606
|
+
const _lESV = "lambdaEventStructureVersion";
|
|
607
|
+
const _lI = "listenerIdentifier";
|
|
608
|
+
const _lUA = "lastUpdatedAt";
|
|
609
|
+
const _lVT = "lastVerifiedTime";
|
|
610
|
+
const _m = "message";
|
|
611
|
+
const _mB = "managedBy";
|
|
612
|
+
const _mR = "maxResults";
|
|
613
|
+
const _ma = "match";
|
|
614
|
+
const _mat = "matcher";
|
|
615
|
+
const _me = "method";
|
|
616
|
+
const _n = "name";
|
|
617
|
+
const _nOARC = "numberOfAssociatedResourceConfigurations";
|
|
618
|
+
const _nOAS = "numberOfAssociatedServices";
|
|
619
|
+
const _nOAVPC = "numberOfAssociatedVPCs";
|
|
620
|
+
const _nT = "nextToken";
|
|
621
|
+
const _p = "protocol";
|
|
622
|
+
const _pDE = "privateDnsEnabled";
|
|
623
|
+
const _pDEr = "privateDnsEntry";
|
|
624
|
+
const _pDP = "privateDnsPreference";
|
|
625
|
+
const _pDSD = "privateDnsSpecifiedDomains";
|
|
626
|
+
const _pM = "pathMatch";
|
|
627
|
+
const _pR = "portRanges";
|
|
628
|
+
const _pV = "protocolVersion";
|
|
629
|
+
const _pa = "path";
|
|
630
|
+
const _po = "port";
|
|
631
|
+
const _pol = "policy";
|
|
632
|
+
const _pr = "priority";
|
|
633
|
+
const _pre = "prefix";
|
|
634
|
+
const _qC = "quotaCode";
|
|
635
|
+
const _r = "reason";
|
|
636
|
+
const _rA = "resourceArn";
|
|
637
|
+
const _rAS = "retryAfterSeconds";
|
|
638
|
+
const _rC = "reasonCode";
|
|
639
|
+
const _rCA = "resourceConfigurationArn";
|
|
640
|
+
const _rCD = "resourceConfigurationDefinition";
|
|
641
|
+
const _rCDR = "resourceConfigDnsResolution";
|
|
642
|
+
const _rCGI = "resourceConfigurationGroupIdentifier";
|
|
643
|
+
const _rCGIe = "resourceConfigurationGroupId";
|
|
644
|
+
const _rCI = "resourceConfigurationIdentifier";
|
|
645
|
+
const _rCIe = "resourceConfigurationId";
|
|
646
|
+
const _rCN = "resourceConfigurationName";
|
|
647
|
+
const _rEAI = "resourceEndpointAssociationIdentifier";
|
|
648
|
+
const _rGI = "resourceGatewayIdentifier";
|
|
649
|
+
const _rGIe = "resourceGatewayId";
|
|
650
|
+
const _rI = "resourceId";
|
|
651
|
+
const _rIe = "resourceIdentifier";
|
|
652
|
+
const _rIu = "ruleIdentifier";
|
|
653
|
+
const _rT = "resourceType";
|
|
654
|
+
const _ru = "rules";
|
|
655
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.vpclattice";
|
|
656
|
+
const _sA = "serviceArn";
|
|
657
|
+
const _sAe = "serviceArns";
|
|
658
|
+
const _sC = "serviceCode";
|
|
659
|
+
const _sCh = "sharingConfig";
|
|
660
|
+
const _sCt = "statusCode";
|
|
661
|
+
const _sGI = "securityGroupIds";
|
|
662
|
+
const _sI = "serviceIdentifier";
|
|
663
|
+
const _sIe = "serviceId";
|
|
664
|
+
const _sIu = "subnetIds";
|
|
665
|
+
const _sM = "serviceManaged";
|
|
666
|
+
const _sN = "serviceName";
|
|
667
|
+
const _sNA = "serviceNetworkArn";
|
|
668
|
+
const _sNI = "serviceNetworkIdentifier";
|
|
669
|
+
const _sNIe = "serviceNetworkId";
|
|
670
|
+
const _sNLT = "serviceNetworkLogType";
|
|
671
|
+
const _sNN = "serviceNetworkName";
|
|
672
|
+
const _sNRAI = "serviceNetworkResourceAssociationIdentifier";
|
|
673
|
+
const _sNSAI = "serviceNetworkServiceAssociationIdentifier";
|
|
674
|
+
const _sNVAI = "serviceNetworkVpcAssociationIdentifier";
|
|
675
|
+
const _se = "server";
|
|
676
|
+
const _st = "status";
|
|
677
|
+
const _sta = "state";
|
|
678
|
+
const _su = "successful";
|
|
679
|
+
const _t = "tags";
|
|
680
|
+
const _tG = "targetGroups";
|
|
681
|
+
const _tGI = "targetGroupIdentifier";
|
|
682
|
+
const _tGT = "targetGroupType";
|
|
683
|
+
const _tK = "tagKeys";
|
|
684
|
+
const _tMC = "txtMethodConfig";
|
|
685
|
+
const _ta = "targets";
|
|
686
|
+
const _ty = "type";
|
|
687
|
+
const _u = "unsuccessful";
|
|
688
|
+
const _uTC = "unhealthyThresholdCount";
|
|
689
|
+
const _v = "value";
|
|
690
|
+
const _vEI = "vpcEndpointId";
|
|
691
|
+
const _vEO = "vpcEndpointOwner";
|
|
692
|
+
const _vEOI = "vpcEndpointOwnerId";
|
|
693
|
+
const _vI = "vpcIdentifier";
|
|
694
|
+
const _vIp = "vpcId";
|
|
695
|
+
const _w = "weight";
|
|
696
|
+
const n0 = "com.amazonaws.vpclattice";
|
|
697
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
698
|
+
var VPCLatticeServiceException$ = [-3, _s, "VPCLatticeServiceException", 0, [], []];
|
|
699
|
+
_s_registry.registerError(VPCLatticeServiceException$, VPCLatticeServiceException);
|
|
700
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
701
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
702
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
703
|
+
[_m],
|
|
704
|
+
[0], 1
|
|
705
|
+
];
|
|
706
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
707
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
708
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
709
|
+
[_m, _rI, _rT],
|
|
710
|
+
[0, 0, 0], 3
|
|
711
|
+
];
|
|
712
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
713
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
714
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
715
|
+
[_m, _rAS],
|
|
716
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
717
|
+
];
|
|
718
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
719
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
720
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
721
|
+
[_m, _rI, _rT],
|
|
722
|
+
[0, 0, 0], 3
|
|
723
|
+
];
|
|
724
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
725
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
726
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
727
|
+
[_m, _rT, _sC, _qC, _rI],
|
|
728
|
+
[0, 0, 0, 0, 0], 4
|
|
729
|
+
];
|
|
730
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
731
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
732
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
733
|
+
[_m, _sC, _qC, _rAS],
|
|
734
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
735
|
+
];
|
|
736
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
737
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
738
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
739
|
+
[_m, _r, _fL],
|
|
740
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
741
|
+
];
|
|
742
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
743
|
+
const errorTypeRegistries = [
|
|
744
|
+
_s_registry,
|
|
745
|
+
n0_registry,
|
|
746
|
+
];
|
|
747
|
+
var AccessLogSubscriptionSummary$ = [3, n0, _ALSS,
|
|
748
|
+
0,
|
|
749
|
+
[_i, _a, _rI, _rA, _dA, _cA, _lUA, _sNLT],
|
|
750
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
751
|
+
];
|
|
752
|
+
var ArnResource$ = [3, n0, _AR,
|
|
753
|
+
0,
|
|
754
|
+
[_a],
|
|
755
|
+
[0]
|
|
756
|
+
];
|
|
757
|
+
var BatchUpdateRuleRequest$ = [3, n0, _BURR,
|
|
758
|
+
0,
|
|
759
|
+
[_sI, _lI, _ru],
|
|
760
|
+
[[0, 1], [0, 1], () => RuleUpdateList], 3
|
|
761
|
+
];
|
|
762
|
+
var BatchUpdateRuleResponse$ = [3, n0, _BURRa,
|
|
763
|
+
0,
|
|
764
|
+
[_su, _u],
|
|
765
|
+
[() => RuleUpdateSuccessList, () => RuleUpdateFailureList]
|
|
766
|
+
];
|
|
767
|
+
var CreateAccessLogSubscriptionRequest$ = [3, n0, _CALSR,
|
|
768
|
+
0,
|
|
769
|
+
[_rIe, _dA, _cT, _sNLT, _t],
|
|
770
|
+
[0, 0, [0, 4], 0, 128 | 0], 2
|
|
771
|
+
];
|
|
772
|
+
var CreateAccessLogSubscriptionResponse$ = [3, n0, _CALSRr,
|
|
773
|
+
0,
|
|
774
|
+
[_i, _a, _rI, _rA, _dA, _sNLT],
|
|
775
|
+
[0, 0, 0, 0, 0, 0], 5
|
|
776
|
+
];
|
|
777
|
+
var CreateListenerRequest$ = [3, n0, _CLR,
|
|
778
|
+
0,
|
|
779
|
+
[_sI, _n, _p, _dAe, _po, _cT, _t],
|
|
780
|
+
[[0, 1], 0, 0, () => RuleAction$, 1, [0, 4], 128 | 0], 4
|
|
781
|
+
];
|
|
782
|
+
var CreateListenerResponse$ = [3, n0, _CLRr,
|
|
783
|
+
0,
|
|
784
|
+
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe],
|
|
785
|
+
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$]
|
|
786
|
+
];
|
|
787
|
+
var CreateResourceConfigurationRequest$ = [3, n0, _CRCR,
|
|
788
|
+
0,
|
|
789
|
+
[_n, _ty, _pR, _p, _rGI, _rCGI, _rCD, _aATSSN, _cDN, _gD, _dVI, _cT, _t],
|
|
790
|
+
[0, 0, 64 | 0, 0, 0, 0, () => ResourceConfigurationDefinition$, 2, 0, 0, 0, [0, 4], 128 | 0], 2
|
|
791
|
+
];
|
|
792
|
+
var CreateResourceConfigurationResponse$ = [3, n0, _CRCRr,
|
|
793
|
+
0,
|
|
794
|
+
[_i, _n, _a, _rGIe, _rCGIe, _ty, _pR, _p, _st, _rCD, _aATSSN, _cA, _fR, _cDN, _dVIo, _gD, _dVA],
|
|
795
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => ResourceConfigurationDefinition$, 2, 5, 0, 0, 0, 0, 0]
|
|
796
|
+
];
|
|
797
|
+
var CreateResourceGatewayRequest$ = [3, n0, _CRGR,
|
|
798
|
+
0,
|
|
799
|
+
[_n, _cT, _vI, _sIu, _sGI, _iAT, _iAPE, _rCDR, _t],
|
|
800
|
+
[0, [0, 4], 0, 64 | 0, 64 | 0, 0, 1, 0, 128 | 0], 1
|
|
801
|
+
];
|
|
802
|
+
var CreateResourceGatewayResponse$ = [3, n0, _CRGRr,
|
|
803
|
+
0,
|
|
804
|
+
[_n, _i, _a, _st, _vI, _sIu, _sGI, _iAT, _iAPE, _rCDR],
|
|
805
|
+
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 1, 0]
|
|
806
|
+
];
|
|
807
|
+
var CreateRuleRequest$ = [3, n0, _CRR,
|
|
808
|
+
0,
|
|
809
|
+
[_sI, _lI, _n, _ma, _pr, _ac, _cT, _t],
|
|
810
|
+
[[0, 1], [0, 1], 0, () => RuleMatch$, 1, () => RuleAction$, [0, 4], 128 | 0], 6
|
|
811
|
+
];
|
|
812
|
+
var CreateRuleResponse$ = [3, n0, _CRRr,
|
|
813
|
+
0,
|
|
814
|
+
[_a, _i, _n, _ma, _pr, _ac],
|
|
815
|
+
[0, 0, 0, () => RuleMatch$, 1, () => RuleAction$]
|
|
816
|
+
];
|
|
817
|
+
var CreateServiceNetworkRequest$ = [3, n0, _CSNR,
|
|
818
|
+
0,
|
|
819
|
+
[_n, _cT, _aT, _t, _sCh],
|
|
820
|
+
[0, [0, 4], 0, 128 | 0, () => SharingConfig$], 1
|
|
821
|
+
];
|
|
822
|
+
var CreateServiceNetworkResourceAssociationRequest$ = [3, n0, _CSNRAR,
|
|
823
|
+
0,
|
|
824
|
+
[_rCI, _sNI, _cT, _pDE, _t],
|
|
825
|
+
[0, 0, [0, 4], 2, 128 | 0], 2
|
|
826
|
+
];
|
|
827
|
+
var CreateServiceNetworkResourceAssociationResponse$ = [3, n0, _CSNRARr,
|
|
828
|
+
0,
|
|
829
|
+
[_i, _a, _st, _cB, _pDE],
|
|
830
|
+
[0, 0, 0, 0, 2]
|
|
831
|
+
];
|
|
832
|
+
var CreateServiceNetworkResponse$ = [3, n0, _CSNRr,
|
|
833
|
+
0,
|
|
834
|
+
[_i, _n, _a, _sCh, _aT],
|
|
835
|
+
[0, 0, 0, () => SharingConfig$, 0]
|
|
836
|
+
];
|
|
837
|
+
var CreateServiceNetworkServiceAssociationRequest$ = [3, n0, _CSNSAR,
|
|
838
|
+
0,
|
|
839
|
+
[_sI, _sNI, _cT, _t],
|
|
840
|
+
[0, 0, [0, 4], 128 | 0], 2
|
|
841
|
+
];
|
|
842
|
+
var CreateServiceNetworkServiceAssociationResponse$ = [3, n0, _CSNSARr,
|
|
843
|
+
0,
|
|
844
|
+
[_i, _st, _a, _cB, _cDN, _dE],
|
|
845
|
+
[0, 0, 0, 0, 0, () => DnsEntry$]
|
|
846
|
+
];
|
|
847
|
+
var CreateServiceNetworkVpcAssociationRequest$ = [3, n0, _CSNVAR,
|
|
848
|
+
0,
|
|
849
|
+
[_sNI, _vI, _cT, _pDE, _sGI, _t, _dO],
|
|
850
|
+
[0, 0, [0, 4], 2, 64 | 0, 128 | 0, () => DnsOptions$], 2
|
|
851
|
+
];
|
|
852
|
+
var CreateServiceNetworkVpcAssociationResponse$ = [3, n0, _CSNVARr,
|
|
853
|
+
0,
|
|
854
|
+
[_i, _st, _a, _cB, _sGI, _pDE, _dO],
|
|
855
|
+
[0, 0, 0, 0, 64 | 0, 2, () => DnsOptions$]
|
|
856
|
+
];
|
|
857
|
+
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
858
|
+
0,
|
|
859
|
+
[_n, _cT, _t, _cDN, _cAe, _aT, _iTS],
|
|
860
|
+
[0, [0, 4], 128 | 0, 0, 0, 0, 1], 1
|
|
861
|
+
];
|
|
862
|
+
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
863
|
+
0,
|
|
864
|
+
[_i, _a, _n, _cDN, _cAe, _st, _aT, _iTS, _dE],
|
|
865
|
+
[0, 0, 0, 0, 0, 0, 0, 1, () => DnsEntry$]
|
|
866
|
+
];
|
|
867
|
+
var CreateTargetGroupRequest$ = [3, n0, _CTGR,
|
|
868
|
+
0,
|
|
869
|
+
[_n, _ty, _co, _cT, _t],
|
|
870
|
+
[0, 0, () => TargetGroupConfig$, [0, 4], 128 | 0], 2
|
|
871
|
+
];
|
|
872
|
+
var CreateTargetGroupResponse$ = [3, n0, _CTGRr,
|
|
873
|
+
0,
|
|
874
|
+
[_i, _a, _n, _ty, _co, _st],
|
|
875
|
+
[0, 0, 0, 0, () => TargetGroupConfig$, 0]
|
|
876
|
+
];
|
|
877
|
+
var DeleteAccessLogSubscriptionRequest$ = [3, n0, _DALSR,
|
|
878
|
+
0,
|
|
879
|
+
[_aLSI],
|
|
880
|
+
[[0, 1]], 1
|
|
881
|
+
];
|
|
882
|
+
var DeleteAccessLogSubscriptionResponse$ = [3, n0, _DALSRe,
|
|
883
|
+
0,
|
|
884
|
+
[],
|
|
885
|
+
[]
|
|
886
|
+
];
|
|
887
|
+
var DeleteAuthPolicyRequest$ = [3, n0, _DAPR,
|
|
888
|
+
0,
|
|
889
|
+
[_rIe],
|
|
890
|
+
[[0, 1]], 1
|
|
891
|
+
];
|
|
892
|
+
var DeleteAuthPolicyResponse$ = [3, n0, _DAPRe,
|
|
893
|
+
0,
|
|
894
|
+
[],
|
|
895
|
+
[]
|
|
896
|
+
];
|
|
897
|
+
var DeleteDomainVerificationRequest$ = [3, n0, _DDVR,
|
|
898
|
+
0,
|
|
899
|
+
[_dVI],
|
|
900
|
+
[[0, 1]], 1
|
|
901
|
+
];
|
|
902
|
+
var DeleteDomainVerificationResponse$ = [3, n0, _DDVRe,
|
|
903
|
+
0,
|
|
904
|
+
[],
|
|
905
|
+
[]
|
|
906
|
+
];
|
|
907
|
+
var DeleteListenerRequest$ = [3, n0, _DLR,
|
|
908
|
+
0,
|
|
909
|
+
[_sI, _lI],
|
|
910
|
+
[[0, 1], [0, 1]], 2
|
|
911
|
+
];
|
|
912
|
+
var DeleteListenerResponse$ = [3, n0, _DLRe,
|
|
913
|
+
0,
|
|
914
|
+
[],
|
|
915
|
+
[]
|
|
916
|
+
];
|
|
917
|
+
var DeleteResourceConfigurationRequest$ = [3, n0, _DRCR,
|
|
918
|
+
0,
|
|
919
|
+
[_rCI],
|
|
920
|
+
[[0, 1]], 1
|
|
921
|
+
];
|
|
922
|
+
var DeleteResourceConfigurationResponse$ = [3, n0, _DRCRe,
|
|
923
|
+
0,
|
|
924
|
+
[],
|
|
925
|
+
[]
|
|
926
|
+
];
|
|
927
|
+
var DeleteResourceEndpointAssociationRequest$ = [3, n0, _DREAR,
|
|
928
|
+
0,
|
|
929
|
+
[_rEAI],
|
|
930
|
+
[[0, 1]], 1
|
|
931
|
+
];
|
|
932
|
+
var DeleteResourceEndpointAssociationResponse$ = [3, n0, _DREARe,
|
|
933
|
+
0,
|
|
934
|
+
[_i, _a, _rCIe, _rCA, _vEI],
|
|
935
|
+
[0, 0, 0, 0, 0]
|
|
936
|
+
];
|
|
937
|
+
var DeleteResourceGatewayRequest$ = [3, n0, _DRGR,
|
|
938
|
+
0,
|
|
939
|
+
[_rGI],
|
|
940
|
+
[[0, 1]], 1
|
|
941
|
+
];
|
|
942
|
+
var DeleteResourceGatewayResponse$ = [3, n0, _DRGRe,
|
|
943
|
+
0,
|
|
944
|
+
[_i, _a, _n, _st],
|
|
945
|
+
[0, 0, 0, 0]
|
|
946
|
+
];
|
|
947
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
948
|
+
0,
|
|
949
|
+
[_rA],
|
|
950
|
+
[[0, 1]], 1
|
|
951
|
+
];
|
|
952
|
+
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
953
|
+
0,
|
|
954
|
+
[],
|
|
955
|
+
[]
|
|
956
|
+
];
|
|
957
|
+
var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
958
|
+
0,
|
|
959
|
+
[_sI, _lI, _rIu],
|
|
960
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
961
|
+
];
|
|
962
|
+
var DeleteRuleResponse$ = [3, n0, _DRRe,
|
|
963
|
+
0,
|
|
964
|
+
[],
|
|
965
|
+
[]
|
|
966
|
+
];
|
|
967
|
+
var DeleteServiceNetworkRequest$ = [3, n0, _DSNR,
|
|
968
|
+
0,
|
|
969
|
+
[_sNI],
|
|
970
|
+
[[0, 1]], 1
|
|
971
|
+
];
|
|
972
|
+
var DeleteServiceNetworkResourceAssociationRequest$ = [3, n0, _DSNRAR,
|
|
973
|
+
0,
|
|
974
|
+
[_sNRAI],
|
|
975
|
+
[[0, 1]], 1
|
|
976
|
+
];
|
|
977
|
+
var DeleteServiceNetworkResourceAssociationResponse$ = [3, n0, _DSNRARe,
|
|
978
|
+
0,
|
|
979
|
+
[_i, _a, _st],
|
|
980
|
+
[0, 0, 0]
|
|
981
|
+
];
|
|
982
|
+
var DeleteServiceNetworkResponse$ = [3, n0, _DSNRe,
|
|
983
|
+
0,
|
|
984
|
+
[],
|
|
985
|
+
[]
|
|
986
|
+
];
|
|
987
|
+
var DeleteServiceNetworkServiceAssociationRequest$ = [3, n0, _DSNSAR,
|
|
988
|
+
0,
|
|
989
|
+
[_sNSAI],
|
|
990
|
+
[[0, 1]], 1
|
|
991
|
+
];
|
|
992
|
+
var DeleteServiceNetworkServiceAssociationResponse$ = [3, n0, _DSNSARe,
|
|
993
|
+
0,
|
|
994
|
+
[_i, _st, _a],
|
|
995
|
+
[0, 0, 0]
|
|
996
|
+
];
|
|
997
|
+
var DeleteServiceNetworkVpcAssociationRequest$ = [3, n0, _DSNVAR,
|
|
998
|
+
0,
|
|
999
|
+
[_sNVAI],
|
|
1000
|
+
[[0, 1]], 1
|
|
1001
|
+
];
|
|
1002
|
+
var DeleteServiceNetworkVpcAssociationResponse$ = [3, n0, _DSNVARe,
|
|
1003
|
+
0,
|
|
1004
|
+
[_i, _st, _a],
|
|
1005
|
+
[0, 0, 0]
|
|
1006
|
+
];
|
|
1007
|
+
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
1008
|
+
0,
|
|
1009
|
+
[_sI],
|
|
1010
|
+
[[0, 1]], 1
|
|
1011
|
+
];
|
|
1012
|
+
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
1013
|
+
0,
|
|
1014
|
+
[_i, _a, _n, _st],
|
|
1015
|
+
[0, 0, 0, 0]
|
|
1016
|
+
];
|
|
1017
|
+
var DeleteTargetGroupRequest$ = [3, n0, _DTGR,
|
|
1018
|
+
0,
|
|
1019
|
+
[_tGI],
|
|
1020
|
+
[[0, 1]], 1
|
|
1021
|
+
];
|
|
1022
|
+
var DeleteTargetGroupResponse$ = [3, n0, _DTGRe,
|
|
1023
|
+
0,
|
|
1024
|
+
[_i, _a, _st],
|
|
1025
|
+
[0, 0, 0]
|
|
1026
|
+
];
|
|
1027
|
+
var DeregisterTargetsRequest$ = [3, n0, _DTR,
|
|
1028
|
+
0,
|
|
1029
|
+
[_tGI, _ta],
|
|
1030
|
+
[[0, 1], () => TargetList], 2
|
|
1031
|
+
];
|
|
1032
|
+
var DeregisterTargetsResponse$ = [3, n0, _DTRe,
|
|
1033
|
+
0,
|
|
1034
|
+
[_su, _u],
|
|
1035
|
+
[() => TargetList, () => TargetFailureList]
|
|
1036
|
+
];
|
|
1037
|
+
var DnsEntry$ = [3, n0, _DE,
|
|
1038
|
+
0,
|
|
1039
|
+
[_dN, _hZI],
|
|
1040
|
+
[0, 0]
|
|
1041
|
+
];
|
|
1042
|
+
var DnsOptions$ = [3, n0, _DO,
|
|
1043
|
+
0,
|
|
1044
|
+
[_pDP, _pDSD],
|
|
1045
|
+
[0, 64 | 0]
|
|
1046
|
+
];
|
|
1047
|
+
var DnsResource$ = [3, n0, _DR,
|
|
1048
|
+
0,
|
|
1049
|
+
[_dN, _iAT],
|
|
1050
|
+
[0, 0]
|
|
1051
|
+
];
|
|
1052
|
+
var DomainVerificationSummary$ = [3, n0, _DVS,
|
|
1053
|
+
0,
|
|
1054
|
+
[_i, _a, _dN, _st, _cA, _tMC, _lVT, _t],
|
|
1055
|
+
[0, 0, 0, 0, 5, () => TxtMethodConfig$, 5, 128 | 0], 5
|
|
1056
|
+
];
|
|
1057
|
+
var FixedResponseAction$ = [3, n0, _FRA,
|
|
1058
|
+
0,
|
|
1059
|
+
[_sCt],
|
|
1060
|
+
[1], 1
|
|
1061
|
+
];
|
|
1062
|
+
var ForwardAction$ = [3, n0, _FA,
|
|
1063
|
+
0,
|
|
1064
|
+
[_tG],
|
|
1065
|
+
[() => WeightedTargetGroupList], 1
|
|
1066
|
+
];
|
|
1067
|
+
var GetAccessLogSubscriptionRequest$ = [3, n0, _GALSR,
|
|
1068
|
+
0,
|
|
1069
|
+
[_aLSI],
|
|
1070
|
+
[[0, 1]], 1
|
|
1071
|
+
];
|
|
1072
|
+
var GetAccessLogSubscriptionResponse$ = [3, n0, _GALSRe,
|
|
1073
|
+
0,
|
|
1074
|
+
[_i, _a, _rI, _rA, _dA, _cA, _lUA, _sNLT],
|
|
1075
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1076
|
+
];
|
|
1077
|
+
var GetAuthPolicyRequest$ = [3, n0, _GAPR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_rIe],
|
|
1080
|
+
[[0, 1]], 1
|
|
1081
|
+
];
|
|
1082
|
+
var GetAuthPolicyResponse$ = [3, n0, _GAPRe,
|
|
1083
|
+
0,
|
|
1084
|
+
[_pol, _sta, _cA, _lUA],
|
|
1085
|
+
[0, 0, 5, 5]
|
|
1086
|
+
];
|
|
1087
|
+
var GetDomainVerificationRequest$ = [3, n0, _GDVR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_dVI],
|
|
1090
|
+
[[0, 1]], 1
|
|
1091
|
+
];
|
|
1092
|
+
var GetDomainVerificationResponse$ = [3, n0, _GDVRe,
|
|
1093
|
+
0,
|
|
1094
|
+
[_i, _a, _dN, _st, _cA, _tMC, _lVT, _t],
|
|
1095
|
+
[0, 0, 0, 0, 5, () => TxtMethodConfig$, 5, 128 | 0], 5
|
|
1096
|
+
];
|
|
1097
|
+
var GetListenerRequest$ = [3, n0, _GLR,
|
|
1098
|
+
0,
|
|
1099
|
+
[_sI, _lI],
|
|
1100
|
+
[[0, 1], [0, 1]], 2
|
|
1101
|
+
];
|
|
1102
|
+
var GetListenerResponse$ = [3, n0, _GLRe,
|
|
1103
|
+
0,
|
|
1104
|
+
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe, _cA, _lUA],
|
|
1105
|
+
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$, 5, 5]
|
|
1106
|
+
];
|
|
1107
|
+
var GetResourceConfigurationRequest$ = [3, n0, _GRCR,
|
|
1108
|
+
0,
|
|
1109
|
+
[_rCI],
|
|
1110
|
+
[[0, 1]], 1
|
|
1111
|
+
];
|
|
1112
|
+
var GetResourceConfigurationResponse$ = [3, n0, _GRCRe,
|
|
1113
|
+
0,
|
|
1114
|
+
[_i, _n, _a, _rGIe, _rCGIe, _ty, _aATSSN, _pR, _p, _cDN, _st, _rCD, _cA, _aM, _fR, _lUA, _dVIo, _dVA, _dVS, _gD],
|
|
1115
|
+
[0, 0, 0, 0, 0, 0, 2, 64 | 0, 0, 0, 0, () => ResourceConfigurationDefinition$, 5, 2, 0, 5, 0, 0, 0, 0]
|
|
1116
|
+
];
|
|
1117
|
+
var GetResourceGatewayRequest$ = [3, n0, _GRGR,
|
|
1118
|
+
0,
|
|
1119
|
+
[_rGI],
|
|
1120
|
+
[[0, 1]], 1
|
|
1121
|
+
];
|
|
1122
|
+
var GetResourceGatewayResponse$ = [3, n0, _GRGRe,
|
|
1123
|
+
0,
|
|
1124
|
+
[_n, _i, _a, _st, _vIp, _sIu, _sM, _mB, _sGI, _iAT, _iAPE, _rCDR, _cA, _lUA],
|
|
1125
|
+
[0, 0, 0, 0, 0, 64 | 0, 2, 0, 64 | 0, 0, 1, 0, 5, 5]
|
|
1126
|
+
];
|
|
1127
|
+
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
1128
|
+
0,
|
|
1129
|
+
[_rA],
|
|
1130
|
+
[[0, 1]], 1
|
|
1131
|
+
];
|
|
1132
|
+
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
1133
|
+
0,
|
|
1134
|
+
[_pol],
|
|
1135
|
+
[0]
|
|
1136
|
+
];
|
|
1137
|
+
var GetRuleRequest$ = [3, n0, _GRR,
|
|
1138
|
+
0,
|
|
1139
|
+
[_sI, _lI, _rIu],
|
|
1140
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1141
|
+
];
|
|
1142
|
+
var GetRuleResponse$ = [3, n0, _GRRe,
|
|
1143
|
+
0,
|
|
1144
|
+
[_a, _i, _n, _iD, _ma, _pr, _ac, _cA, _lUA],
|
|
1145
|
+
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$, 5, 5]
|
|
1146
|
+
];
|
|
1147
|
+
var GetServiceNetworkRequest$ = [3, n0, _GSNR,
|
|
1148
|
+
0,
|
|
1149
|
+
[_sNI],
|
|
1150
|
+
[[0, 1]], 1
|
|
1151
|
+
];
|
|
1152
|
+
var GetServiceNetworkResourceAssociationRequest$ = [3, n0, _GSNRAR,
|
|
1153
|
+
0,
|
|
1154
|
+
[_sNRAI],
|
|
1155
|
+
[[0, 1]], 1
|
|
1156
|
+
];
|
|
1157
|
+
var GetServiceNetworkResourceAssociationResponse$ = [3, n0, _GSNRARe,
|
|
1158
|
+
0,
|
|
1159
|
+
[_i, _a, _st, _cB, _cA, _rCIe, _rCA, _rCN, _sNIe, _sNA, _sNN, _fR, _fC, _lUA, _pDEr, _pDE, _dE, _iMA, _dVS],
|
|
1160
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, () => DnsEntry$, 2, () => DnsEntry$, 2, 0]
|
|
1161
|
+
];
|
|
1162
|
+
var GetServiceNetworkResponse$ = [3, n0, _GSNRe,
|
|
1163
|
+
0,
|
|
1164
|
+
[_i, _n, _cA, _lUA, _a, _aT, _sCh, _nOAVPC, _nOAS],
|
|
1165
|
+
[0, 0, 5, 5, 0, 0, () => SharingConfig$, 1, 1]
|
|
1166
|
+
];
|
|
1167
|
+
var GetServiceNetworkServiceAssociationRequest$ = [3, n0, _GSNSAR,
|
|
1168
|
+
0,
|
|
1169
|
+
[_sNSAI],
|
|
1170
|
+
[[0, 1]], 1
|
|
1171
|
+
];
|
|
1172
|
+
var GetServiceNetworkServiceAssociationResponse$ = [3, n0, _GSNSARe,
|
|
1173
|
+
0,
|
|
1174
|
+
[_i, _st, _a, _cB, _cA, _sIe, _sN, _sA, _sNIe, _sNN, _sNA, _dE, _cDN, _fM, _fC],
|
|
1175
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, 0, 0, 0]
|
|
1176
|
+
];
|
|
1177
|
+
var GetServiceNetworkVpcAssociationRequest$ = [3, n0, _GSNVAR,
|
|
1178
|
+
0,
|
|
1179
|
+
[_sNVAI],
|
|
1180
|
+
[[0, 1]], 1
|
|
1181
|
+
];
|
|
1182
|
+
var GetServiceNetworkVpcAssociationResponse$ = [3, n0, _GSNVARe,
|
|
1183
|
+
0,
|
|
1184
|
+
[_i, _st, _a, _cB, _cA, _sNIe, _sNN, _sNA, _vIp, _sGI, _pDE, _fM, _fC, _lUA, _dO],
|
|
1185
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 0, 64 | 0, 2, 0, 0, 5, () => DnsOptions$]
|
|
1186
|
+
];
|
|
1187
|
+
var GetServiceRequest$ = [3, n0, _GSR,
|
|
1188
|
+
0,
|
|
1189
|
+
[_sI],
|
|
1190
|
+
[[0, 1]], 1
|
|
1191
|
+
];
|
|
1192
|
+
var GetServiceResponse$ = [3, n0, _GSRe,
|
|
1193
|
+
0,
|
|
1194
|
+
[_i, _n, _a, _cA, _lUA, _dE, _cDN, _cAe, _st, _aT, _iTS, _fC, _fM],
|
|
1195
|
+
[0, 0, 0, 5, 5, () => DnsEntry$, 0, 0, 0, 0, 1, 0, 0]
|
|
1196
|
+
];
|
|
1197
|
+
var GetTargetGroupRequest$ = [3, n0, _GTGR,
|
|
1198
|
+
0,
|
|
1199
|
+
[_tGI],
|
|
1200
|
+
[[0, 1]], 1
|
|
1201
|
+
];
|
|
1202
|
+
var GetTargetGroupResponse$ = [3, n0, _GTGRe,
|
|
1203
|
+
0,
|
|
1204
|
+
[_i, _a, _n, _ty, _co, _cA, _lUA, _st, _sAe, _fM, _fC],
|
|
1205
|
+
[0, 0, 0, 0, () => TargetGroupConfig$, 5, 5, 0, 64 | 0, 0, 0]
|
|
1206
|
+
];
|
|
1207
|
+
var HeaderMatch$ = [3, n0, _HM,
|
|
1208
|
+
0,
|
|
1209
|
+
[_n, _ma, _cS],
|
|
1210
|
+
[0, () => HeaderMatchType$, 2], 2
|
|
1211
|
+
];
|
|
1212
|
+
var HealthCheckConfig$ = [3, n0, _HCC,
|
|
1213
|
+
0,
|
|
1214
|
+
[_en, _p, _pV, _po, _pa, _hCIS, _hCTS, _hTC, _uTC, _mat],
|
|
1215
|
+
[2, 0, 0, 1, 0, 1, 1, 1, 1, () => Matcher$]
|
|
1216
|
+
];
|
|
1217
|
+
var HttpMatch$ = [3, n0, _HMt,
|
|
1218
|
+
0,
|
|
1219
|
+
[_me, _pM, _hM],
|
|
1220
|
+
[0, () => PathMatch$, () => HeaderMatchList]
|
|
1221
|
+
];
|
|
1222
|
+
var IpResource$ = [3, n0, _IR,
|
|
1223
|
+
0,
|
|
1224
|
+
[_iA],
|
|
1225
|
+
[0]
|
|
1226
|
+
];
|
|
1227
|
+
var ListAccessLogSubscriptionsRequest$ = [3, n0, _LALSR,
|
|
1228
|
+
0,
|
|
1229
|
+
[_rIe, _mR, _nT],
|
|
1230
|
+
[[0, { [_hQ]: _rIe }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1231
|
+
];
|
|
1232
|
+
var ListAccessLogSubscriptionsResponse$ = [3, n0, _LALSRi,
|
|
1233
|
+
0,
|
|
1234
|
+
[_it, _nT],
|
|
1235
|
+
[() => AccessLogSubscriptionList, 0], 1
|
|
1236
|
+
];
|
|
1237
|
+
var ListDomainVerificationsRequest$ = [3, n0, _LDVR,
|
|
1238
|
+
0,
|
|
1239
|
+
[_mR, _nT],
|
|
1240
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1241
|
+
];
|
|
1242
|
+
var ListDomainVerificationsResponse$ = [3, n0, _LDVRi,
|
|
1243
|
+
0,
|
|
1244
|
+
[_it, _nT],
|
|
1245
|
+
[() => DomainVerificationList, 0], 1
|
|
1246
|
+
];
|
|
1247
|
+
var ListenerSummary$ = [3, n0, _LS,
|
|
1248
|
+
0,
|
|
1249
|
+
[_a, _i, _n, _p, _po, _cA, _lUA],
|
|
1250
|
+
[0, 0, 0, 0, 1, 5, 5]
|
|
1251
|
+
];
|
|
1252
|
+
var ListListenersRequest$ = [3, n0, _LLR,
|
|
1253
|
+
0,
|
|
1254
|
+
[_sI, _mR, _nT],
|
|
1255
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1256
|
+
];
|
|
1257
|
+
var ListListenersResponse$ = [3, n0, _LLRi,
|
|
1258
|
+
0,
|
|
1259
|
+
[_it, _nT],
|
|
1260
|
+
[() => ListenerSummaryList, 0], 1
|
|
1261
|
+
];
|
|
1262
|
+
var ListResourceConfigurationsRequest$ = [3, n0, _LRCR,
|
|
1263
|
+
0,
|
|
1264
|
+
[_rGI, _rCGI, _dVI, _mR, _nT],
|
|
1265
|
+
[[0, { [_hQ]: _rGI }], [0, { [_hQ]: _rCGI }], [0, { [_hQ]: _dVI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1266
|
+
];
|
|
1267
|
+
var ListResourceConfigurationsResponse$ = [3, n0, _LRCRi,
|
|
1268
|
+
0,
|
|
1269
|
+
[_it, _nT],
|
|
1270
|
+
[() => ResourceConfigurationSummaryList, 0]
|
|
1271
|
+
];
|
|
1272
|
+
var ListResourceEndpointAssociationsRequest$ = [3, n0, _LREAR,
|
|
1273
|
+
0,
|
|
1274
|
+
[_rCI, _rEAI, _vEI, _vEO, _mR, _nT],
|
|
1275
|
+
[[0, { [_hQ]: _rCI }], [0, { [_hQ]: _rEAI }], [0, { [_hQ]: _vEI }], [0, { [_hQ]: _vEO }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1276
|
+
];
|
|
1277
|
+
var ListResourceEndpointAssociationsResponse$ = [3, n0, _LREARi,
|
|
1278
|
+
0,
|
|
1279
|
+
[_it, _nT],
|
|
1280
|
+
[() => ResourceEndpointAssociationList, 0], 1
|
|
1281
|
+
];
|
|
1282
|
+
var ListResourceGatewaysRequest$ = [3, n0, _LRGR,
|
|
1283
|
+
0,
|
|
1284
|
+
[_mR, _nT],
|
|
1285
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1286
|
+
];
|
|
1287
|
+
var ListResourceGatewaysResponse$ = [3, n0, _LRGRi,
|
|
1288
|
+
0,
|
|
1289
|
+
[_it, _nT],
|
|
1290
|
+
[() => ResourceGatewayList, 0]
|
|
1291
|
+
];
|
|
1292
|
+
var ListRulesRequest$ = [3, n0, _LRR,
|
|
1293
|
+
0,
|
|
1294
|
+
[_sI, _lI, _mR, _nT],
|
|
1295
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1296
|
+
];
|
|
1297
|
+
var ListRulesResponse$ = [3, n0, _LRRi,
|
|
1298
|
+
0,
|
|
1299
|
+
[_it, _nT],
|
|
1300
|
+
[() => RuleSummaryList, 0], 1
|
|
1301
|
+
];
|
|
1302
|
+
var ListServiceNetworkResourceAssociationsRequest$ = [3, n0, _LSNRAR,
|
|
1303
|
+
0,
|
|
1304
|
+
[_sNI, _rCI, _mR, _nT, _iC],
|
|
1305
|
+
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _rCI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [2, { [_hQ]: _iC }]]
|
|
1306
|
+
];
|
|
1307
|
+
var ListServiceNetworkResourceAssociationsResponse$ = [3, n0, _LSNRARi,
|
|
1308
|
+
0,
|
|
1309
|
+
[_it, _nT],
|
|
1310
|
+
[() => ServiceNetworkResourceAssociationList, 0], 1
|
|
1311
|
+
];
|
|
1312
|
+
var ListServiceNetworkServiceAssociationsRequest$ = [3, n0, _LSNSAR,
|
|
1313
|
+
0,
|
|
1314
|
+
[_sNI, _sI, _mR, _nT],
|
|
1315
|
+
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _sI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1316
|
+
];
|
|
1317
|
+
var ListServiceNetworkServiceAssociationsResponse$ = [3, n0, _LSNSARi,
|
|
1318
|
+
0,
|
|
1319
|
+
[_it, _nT],
|
|
1320
|
+
[() => ServiceNetworkServiceAssociationList, 0], 1
|
|
1321
|
+
];
|
|
1322
|
+
var ListServiceNetworksRequest$ = [3, n0, _LSNR,
|
|
1323
|
+
0,
|
|
1324
|
+
[_mR, _nT],
|
|
1325
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1326
|
+
];
|
|
1327
|
+
var ListServiceNetworksResponse$ = [3, n0, _LSNRi,
|
|
1328
|
+
0,
|
|
1329
|
+
[_it, _nT],
|
|
1330
|
+
[() => ServiceNetworkList, 0], 1
|
|
1331
|
+
];
|
|
1332
|
+
var ListServiceNetworkVpcAssociationsRequest$ = [3, n0, _LSNVAR,
|
|
1333
|
+
0,
|
|
1334
|
+
[_sNI, _vI, _mR, _nT],
|
|
1335
|
+
[[0, { [_hQ]: _sNI }], [0, { [_hQ]: _vI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1336
|
+
];
|
|
1337
|
+
var ListServiceNetworkVpcAssociationsResponse$ = [3, n0, _LSNVARi,
|
|
1338
|
+
0,
|
|
1339
|
+
[_it, _nT],
|
|
1340
|
+
[() => ServiceNetworkVpcAssociationList, 0], 1
|
|
1341
|
+
];
|
|
1342
|
+
var ListServiceNetworkVpcEndpointAssociationsRequest$ = [3, n0, _LSNVEAR,
|
|
1343
|
+
0,
|
|
1344
|
+
[_sNI, _mR, _nT],
|
|
1345
|
+
[[0, { [_hQ]: _sNI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1346
|
+
];
|
|
1347
|
+
var ListServiceNetworkVpcEndpointAssociationsResponse$ = [3, n0, _LSNVEARi,
|
|
1348
|
+
0,
|
|
1349
|
+
[_it, _nT],
|
|
1350
|
+
[() => ServiceNetworkVpcEndpointAssociationList, 0], 1
|
|
1351
|
+
];
|
|
1352
|
+
var ListServicesRequest$ = [3, n0, _LSR,
|
|
1353
|
+
0,
|
|
1354
|
+
[_mR, _nT],
|
|
1355
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1356
|
+
];
|
|
1357
|
+
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
1358
|
+
0,
|
|
1359
|
+
[_it, _nT],
|
|
1360
|
+
[() => ServiceList, 0]
|
|
1361
|
+
];
|
|
1362
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1363
|
+
0,
|
|
1364
|
+
[_rA],
|
|
1365
|
+
[[0, 1]], 1
|
|
1366
|
+
];
|
|
1367
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1368
|
+
0,
|
|
1369
|
+
[_t],
|
|
1370
|
+
[128 | 0]
|
|
1371
|
+
];
|
|
1372
|
+
var ListTargetGroupsRequest$ = [3, n0, _LTGR,
|
|
1373
|
+
0,
|
|
1374
|
+
[_mR, _nT, _vI, _tGT],
|
|
1375
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _vI }], [0, { [_hQ]: _tGT }]]
|
|
1376
|
+
];
|
|
1377
|
+
var ListTargetGroupsResponse$ = [3, n0, _LTGRi,
|
|
1378
|
+
0,
|
|
1379
|
+
[_it, _nT],
|
|
1380
|
+
[() => TargetGroupList, 0]
|
|
1381
|
+
];
|
|
1382
|
+
var ListTargetsRequest$ = [3, n0, _LTR,
|
|
1383
|
+
0,
|
|
1384
|
+
[_tGI, _mR, _nT, _ta],
|
|
1385
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], () => TargetList], 1
|
|
1386
|
+
];
|
|
1387
|
+
var ListTargetsResponse$ = [3, n0, _LTRi,
|
|
1388
|
+
0,
|
|
1389
|
+
[_it, _nT],
|
|
1390
|
+
[() => TargetSummaryList, 0], 1
|
|
1391
|
+
];
|
|
1392
|
+
var PathMatch$ = [3, n0, _PM,
|
|
1393
|
+
0,
|
|
1394
|
+
[_ma, _cS],
|
|
1395
|
+
[() => PathMatchType$, 2], 1
|
|
1396
|
+
];
|
|
1397
|
+
var PutAuthPolicyRequest$ = [3, n0, _PAPR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_rIe, _pol],
|
|
1400
|
+
[[0, 1], 0], 2
|
|
1401
|
+
];
|
|
1402
|
+
var PutAuthPolicyResponse$ = [3, n0, _PAPRu,
|
|
1403
|
+
0,
|
|
1404
|
+
[_pol, _sta],
|
|
1405
|
+
[0, 0]
|
|
1406
|
+
];
|
|
1407
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1408
|
+
0,
|
|
1409
|
+
[_rA, _pol],
|
|
1410
|
+
[[0, 1], 0], 2
|
|
1411
|
+
];
|
|
1412
|
+
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1413
|
+
0,
|
|
1414
|
+
[],
|
|
1415
|
+
[]
|
|
1416
|
+
];
|
|
1417
|
+
var RegisterTargetsRequest$ = [3, n0, _RTR,
|
|
1418
|
+
0,
|
|
1419
|
+
[_tGI, _ta],
|
|
1420
|
+
[[0, 1], () => TargetList], 2
|
|
1421
|
+
];
|
|
1422
|
+
var RegisterTargetsResponse$ = [3, n0, _RTRe,
|
|
1423
|
+
0,
|
|
1424
|
+
[_su, _u],
|
|
1425
|
+
[() => TargetList, () => TargetFailureList]
|
|
1426
|
+
];
|
|
1427
|
+
var ResourceConfigurationSummary$ = [3, n0, _RCS,
|
|
1428
|
+
0,
|
|
1429
|
+
[_i, _n, _a, _rGIe, _rCGIe, _ty, _st, _aM, _cA, _lUA, _cDN, _dVIo, _gD],
|
|
1430
|
+
[0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 0, 0, 0]
|
|
1431
|
+
];
|
|
1432
|
+
var ResourceEndpointAssociationSummary$ = [3, n0, _REAS,
|
|
1433
|
+
0,
|
|
1434
|
+
[_i, _a, _rCIe, _rCA, _rCN, _vEI, _vEO, _cB, _cA],
|
|
1435
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 5]
|
|
1436
|
+
];
|
|
1437
|
+
var ResourceGatewaySummary$ = [3, n0, _RGS,
|
|
1438
|
+
0,
|
|
1439
|
+
[_n, _i, _a, _st, _vI, _sIu, _sGI, _iAT, _iAPE, _rCDR, _cA, _lUA],
|
|
1440
|
+
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 1, 0, 5, 5]
|
|
1441
|
+
];
|
|
1442
|
+
var RuleSummary$ = [3, n0, _RS,
|
|
1443
|
+
0,
|
|
1444
|
+
[_a, _i, _n, _iD, _pr, _cA, _lUA],
|
|
1445
|
+
[0, 0, 0, 2, 1, 5, 5]
|
|
1446
|
+
];
|
|
1447
|
+
var RuleUpdate$ = [3, n0, _RU,
|
|
1448
|
+
0,
|
|
1449
|
+
[_rIu, _ma, _pr, _ac],
|
|
1450
|
+
[0, () => RuleMatch$, 1, () => RuleAction$], 1
|
|
1451
|
+
];
|
|
1452
|
+
var RuleUpdateFailure$ = [3, n0, _RUF,
|
|
1453
|
+
0,
|
|
1454
|
+
[_rIu, _fC, _fM],
|
|
1455
|
+
[0, 0, 0]
|
|
1456
|
+
];
|
|
1457
|
+
var RuleUpdateSuccess$ = [3, n0, _RUS,
|
|
1458
|
+
0,
|
|
1459
|
+
[_a, _i, _n, _iD, _ma, _pr, _ac],
|
|
1460
|
+
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$]
|
|
1461
|
+
];
|
|
1462
|
+
var ServiceNetworkEndpointAssociation$ = [3, n0, _SNEA,
|
|
1463
|
+
0,
|
|
1464
|
+
[_vEI, _vIp, _vEOI, _i, _sta, _sNA, _cA],
|
|
1465
|
+
[0, 0, 0, 0, 0, 0, 5]
|
|
1466
|
+
];
|
|
1467
|
+
var ServiceNetworkResourceAssociationSummary$ = [3, n0, _SNRAS,
|
|
1468
|
+
0,
|
|
1469
|
+
[_i, _a, _st, _cB, _cA, _rCIe, _rCA, _rCN, _sNIe, _sNA, _sNN, _dE, _pDEr, _iMA, _fC, _pDE],
|
|
1470
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, () => DnsEntry$, 2, 0, 2]
|
|
1471
|
+
];
|
|
1472
|
+
var ServiceNetworkServiceAssociationSummary$ = [3, n0, _SNSAS,
|
|
1473
|
+
0,
|
|
1474
|
+
[_i, _st, _a, _cB, _cA, _sIe, _sN, _sA, _sNIe, _sNN, _sNA, _dE, _cDN],
|
|
1475
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, () => DnsEntry$, 0]
|
|
1476
|
+
];
|
|
1477
|
+
var ServiceNetworkSummary$ = [3, n0, _SNS,
|
|
1478
|
+
0,
|
|
1479
|
+
[_i, _n, _a, _cA, _lUA, _nOAVPC, _nOAS, _nOARC],
|
|
1480
|
+
[0, 0, 0, 5, 5, 1, 1, 1]
|
|
1481
|
+
];
|
|
1482
|
+
var ServiceNetworkVpcAssociationSummary$ = [3, n0, _SNVAS,
|
|
1483
|
+
0,
|
|
1484
|
+
[_i, _a, _st, _cB, _cA, _sNIe, _sNN, _sNA, _pDE, _dO, _vIp, _lUA],
|
|
1485
|
+
[0, 0, 0, 0, 5, 0, 0, 0, 2, () => DnsOptions$, 0, 5]
|
|
1486
|
+
];
|
|
1487
|
+
var ServiceSummary$ = [3, n0, _SS,
|
|
1488
|
+
0,
|
|
1489
|
+
[_i, _n, _a, _cA, _lUA, _dE, _cDN, _st],
|
|
1490
|
+
[0, 0, 0, 5, 5, () => DnsEntry$, 0, 0]
|
|
1491
|
+
];
|
|
1492
|
+
var SharingConfig$ = [3, n0, _SC,
|
|
1493
|
+
0,
|
|
1494
|
+
[_en],
|
|
1495
|
+
[2]
|
|
1496
|
+
];
|
|
1497
|
+
var StartDomainVerificationRequest$ = [3, n0, _SDVR,
|
|
1498
|
+
0,
|
|
1499
|
+
[_dN, _cT, _t],
|
|
1500
|
+
[0, [0, 4], 128 | 0], 1
|
|
1501
|
+
];
|
|
1502
|
+
var StartDomainVerificationResponse$ = [3, n0, _SDVRt,
|
|
1503
|
+
0,
|
|
1504
|
+
[_i, _a, _dN, _st, _tMC],
|
|
1505
|
+
[0, 0, 0, 0, () => TxtMethodConfig$], 4
|
|
1506
|
+
];
|
|
1507
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1508
|
+
0,
|
|
1509
|
+
[_rA, _t],
|
|
1510
|
+
[[0, 1], 128 | 0], 2
|
|
1511
|
+
];
|
|
1512
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1513
|
+
0,
|
|
1514
|
+
[],
|
|
1515
|
+
[]
|
|
1516
|
+
];
|
|
1517
|
+
var Target$ = [3, n0, _T,
|
|
1518
|
+
0,
|
|
1519
|
+
[_i, _po],
|
|
1520
|
+
[0, 1], 1
|
|
1521
|
+
];
|
|
1522
|
+
var TargetFailure$ = [3, n0, _TF,
|
|
1523
|
+
0,
|
|
1524
|
+
[_i, _po, _fC, _fM],
|
|
1525
|
+
[0, 1, 0, 0]
|
|
1526
|
+
];
|
|
1527
|
+
var TargetGroupConfig$ = [3, n0, _TGC,
|
|
1528
|
+
0,
|
|
1529
|
+
[_po, _p, _pV, _iAT, _vI, _hC, _lESV],
|
|
1530
|
+
[1, 0, 0, 0, 0, () => HealthCheckConfig$, 0]
|
|
1531
|
+
];
|
|
1532
|
+
var TargetGroupSummary$ = [3, n0, _TGS,
|
|
1533
|
+
0,
|
|
1534
|
+
[_i, _a, _n, _ty, _cA, _po, _p, _iAT, _vI, _lUA, _st, _sAe, _lESV],
|
|
1535
|
+
[0, 0, 0, 0, 5, 1, 0, 0, 0, 5, 0, 64 | 0, 0]
|
|
1536
|
+
];
|
|
1537
|
+
var TargetSummary$ = [3, n0, _TS,
|
|
1538
|
+
0,
|
|
1539
|
+
[_i, _po, _st, _rC],
|
|
1540
|
+
[0, 1, 0, 0]
|
|
1541
|
+
];
|
|
1542
|
+
var TxtMethodConfig$ = [3, n0, _TMC,
|
|
1543
|
+
0,
|
|
1544
|
+
[_v, _n],
|
|
1545
|
+
[0, 0], 2
|
|
1546
|
+
];
|
|
1547
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1548
|
+
0,
|
|
1549
|
+
[_rA, _tK],
|
|
1550
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1551
|
+
];
|
|
1552
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1553
|
+
0,
|
|
1554
|
+
[],
|
|
1555
|
+
[]
|
|
1556
|
+
];
|
|
1557
|
+
var UpdateAccessLogSubscriptionRequest$ = [3, n0, _UALSR,
|
|
1558
|
+
0,
|
|
1559
|
+
[_aLSI, _dA],
|
|
1560
|
+
[[0, 1], 0], 2
|
|
1561
|
+
];
|
|
1562
|
+
var UpdateAccessLogSubscriptionResponse$ = [3, n0, _UALSRp,
|
|
1563
|
+
0,
|
|
1564
|
+
[_i, _a, _rI, _rA, _dA],
|
|
1565
|
+
[0, 0, 0, 0, 0], 5
|
|
1566
|
+
];
|
|
1567
|
+
var UpdateListenerRequest$ = [3, n0, _ULR,
|
|
1568
|
+
0,
|
|
1569
|
+
[_sI, _lI, _dAe],
|
|
1570
|
+
[[0, 1], [0, 1], () => RuleAction$], 3
|
|
1571
|
+
];
|
|
1572
|
+
var UpdateListenerResponse$ = [3, n0, _ULRp,
|
|
1573
|
+
0,
|
|
1574
|
+
[_a, _i, _n, _p, _po, _sA, _sIe, _dAe],
|
|
1575
|
+
[0, 0, 0, 0, 1, 0, 0, () => RuleAction$]
|
|
1576
|
+
];
|
|
1577
|
+
var UpdateResourceConfigurationRequest$ = [3, n0, _URCR,
|
|
1578
|
+
0,
|
|
1579
|
+
[_rCI, _rCD, _aATSSN, _pR],
|
|
1580
|
+
[[0, 1], () => ResourceConfigurationDefinition$, 2, 64 | 0], 1
|
|
1581
|
+
];
|
|
1582
|
+
var UpdateResourceConfigurationResponse$ = [3, n0, _URCRp,
|
|
1583
|
+
0,
|
|
1584
|
+
[_i, _n, _a, _rGIe, _rCGIe, _ty, _pR, _aATSSN, _p, _st, _rCD],
|
|
1585
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 2, 0, 0, () => ResourceConfigurationDefinition$]
|
|
1586
|
+
];
|
|
1587
|
+
var UpdateResourceGatewayRequest$ = [3, n0, _URGR,
|
|
1588
|
+
0,
|
|
1589
|
+
[_rGI, _sGI],
|
|
1590
|
+
[[0, 1], 64 | 0], 1
|
|
1591
|
+
];
|
|
1592
|
+
var UpdateResourceGatewayResponse$ = [3, n0, _URGRp,
|
|
1593
|
+
0,
|
|
1594
|
+
[_n, _i, _a, _st, _vIp, _sIu, _sGI, _iAT],
|
|
1595
|
+
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0]
|
|
1596
|
+
];
|
|
1597
|
+
var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
1598
|
+
0,
|
|
1599
|
+
[_sI, _lI, _rIu, _ma, _pr, _ac],
|
|
1600
|
+
[[0, 1], [0, 1], [0, 1], () => RuleMatch$, 1, () => RuleAction$], 3
|
|
1601
|
+
];
|
|
1602
|
+
var UpdateRuleResponse$ = [3, n0, _URRpd,
|
|
1603
|
+
0,
|
|
1604
|
+
[_a, _i, _n, _iD, _ma, _pr, _ac],
|
|
1605
|
+
[0, 0, 0, 2, () => RuleMatch$, 1, () => RuleAction$]
|
|
1606
|
+
];
|
|
1607
|
+
var UpdateServiceNetworkRequest$ = [3, n0, _USNR,
|
|
1608
|
+
0,
|
|
1609
|
+
[_sNI, _aT],
|
|
1610
|
+
[[0, 1], 0], 2
|
|
1611
|
+
];
|
|
1612
|
+
var UpdateServiceNetworkResponse$ = [3, n0, _USNRp,
|
|
1613
|
+
0,
|
|
1614
|
+
[_i, _n, _a, _aT],
|
|
1615
|
+
[0, 0, 0, 0]
|
|
1616
|
+
];
|
|
1617
|
+
var UpdateServiceNetworkVpcAssociationRequest$ = [3, n0, _USNVAR,
|
|
1618
|
+
0,
|
|
1619
|
+
[_sNVAI, _sGI],
|
|
1620
|
+
[[0, 1], 64 | 0], 2
|
|
1621
|
+
];
|
|
1622
|
+
var UpdateServiceNetworkVpcAssociationResponse$ = [3, n0, _USNVARp,
|
|
1623
|
+
0,
|
|
1624
|
+
[_i, _a, _st, _cB, _sGI],
|
|
1625
|
+
[0, 0, 0, 0, 64 | 0]
|
|
1626
|
+
];
|
|
1627
|
+
var UpdateServiceRequest$ = [3, n0, _USR,
|
|
1628
|
+
0,
|
|
1629
|
+
[_sI, _cAe, _aT, _iTS],
|
|
1630
|
+
[[0, 1], 0, 0, 1], 1
|
|
1631
|
+
];
|
|
1632
|
+
var UpdateServiceResponse$ = [3, n0, _USRp,
|
|
1633
|
+
0,
|
|
1634
|
+
[_i, _a, _n, _cDN, _cAe, _aT, _iTS],
|
|
1635
|
+
[0, 0, 0, 0, 0, 0, 1]
|
|
1636
|
+
];
|
|
1637
|
+
var UpdateTargetGroupRequest$ = [3, n0, _UTGR,
|
|
1638
|
+
0,
|
|
1639
|
+
[_tGI, _hC],
|
|
1640
|
+
[[0, 1], () => HealthCheckConfig$], 2
|
|
1641
|
+
];
|
|
1642
|
+
var UpdateTargetGroupResponse$ = [3, n0, _UTGRp,
|
|
1643
|
+
0,
|
|
1644
|
+
[_i, _a, _n, _ty, _co, _st],
|
|
1645
|
+
[0, 0, 0, 0, () => TargetGroupConfig$, 0]
|
|
1646
|
+
];
|
|
1647
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1648
|
+
0,
|
|
1649
|
+
[_n, _m],
|
|
1650
|
+
[0, 0], 2
|
|
1651
|
+
];
|
|
1652
|
+
var WeightedTargetGroup$ = [3, n0, _WTG,
|
|
1653
|
+
0,
|
|
1654
|
+
[_tGI, _w],
|
|
1655
|
+
[0, 1], 1
|
|
1656
|
+
];
|
|
1657
|
+
var AccessLogSubscriptionList = [1, n0, _ALSL,
|
|
1658
|
+
0, () => AccessLogSubscriptionSummary$
|
|
1659
|
+
];
|
|
1660
|
+
var DomainVerificationList = [1, n0, _DVL,
|
|
1661
|
+
0, () => DomainVerificationSummary$
|
|
1662
|
+
];
|
|
1663
|
+
var HeaderMatchList = [1, n0, _HML,
|
|
1664
|
+
0, () => HeaderMatch$
|
|
1665
|
+
];
|
|
1666
|
+
var ListenerSummaryList = [1, n0, _LSL,
|
|
1667
|
+
0, () => ListenerSummary$
|
|
1668
|
+
];
|
|
1669
|
+
var ResourceConfigurationSummaryList = [1, n0, _RCSL,
|
|
1670
|
+
0, () => ResourceConfigurationSummary$
|
|
1671
|
+
];
|
|
1672
|
+
var ResourceEndpointAssociationList = [1, n0, _REAL,
|
|
1673
|
+
0, () => ResourceEndpointAssociationSummary$
|
|
1674
|
+
];
|
|
1675
|
+
var ResourceGatewayList = [1, n0, _RGL,
|
|
1676
|
+
0, () => ResourceGatewaySummary$
|
|
1677
|
+
];
|
|
1678
|
+
var RuleSummaryList = [1, n0, _RSL,
|
|
1679
|
+
0, () => RuleSummary$
|
|
1680
|
+
];
|
|
1681
|
+
var RuleUpdateFailureList = [1, n0, _RUFL,
|
|
1682
|
+
0, () => RuleUpdateFailure$
|
|
1683
|
+
];
|
|
1684
|
+
var RuleUpdateList = [1, n0, _RUL,
|
|
1685
|
+
0, () => RuleUpdate$
|
|
1686
|
+
];
|
|
1687
|
+
var RuleUpdateSuccessList = [1, n0, _RUSL,
|
|
1688
|
+
0, () => RuleUpdateSuccess$
|
|
1689
|
+
];
|
|
1690
|
+
var ServiceList = [1, n0, _SL,
|
|
1691
|
+
0, () => ServiceSummary$
|
|
1692
|
+
];
|
|
1693
|
+
var ServiceNetworkList = [1, n0, _SNL,
|
|
1694
|
+
0, () => ServiceNetworkSummary$
|
|
1695
|
+
];
|
|
1696
|
+
var ServiceNetworkResourceAssociationList = [1, n0, _SNRAL,
|
|
1697
|
+
0, () => ServiceNetworkResourceAssociationSummary$
|
|
1698
|
+
];
|
|
1699
|
+
var ServiceNetworkServiceAssociationList = [1, n0, _SNSAL,
|
|
1700
|
+
0, () => ServiceNetworkServiceAssociationSummary$
|
|
1701
|
+
];
|
|
1702
|
+
var ServiceNetworkVpcAssociationList = [1, n0, _SNVAL,
|
|
1703
|
+
0, () => ServiceNetworkVpcAssociationSummary$
|
|
1704
|
+
];
|
|
1705
|
+
var ServiceNetworkVpcEndpointAssociationList = [1, n0, _SNVEAL,
|
|
1706
|
+
0, () => ServiceNetworkEndpointAssociation$
|
|
1707
|
+
];
|
|
1708
|
+
var TargetFailureList = [1, n0, _TFL,
|
|
1709
|
+
0, () => TargetFailure$
|
|
1710
|
+
];
|
|
1711
|
+
var TargetGroupList = [1, n0, _TGL,
|
|
1712
|
+
0, () => TargetGroupSummary$
|
|
1713
|
+
];
|
|
1714
|
+
var TargetList = [1, n0, _TL,
|
|
1715
|
+
0, () => Target$
|
|
1716
|
+
];
|
|
1717
|
+
var TargetSummaryList = [1, n0, _TSL,
|
|
1718
|
+
0, () => TargetSummary$
|
|
1719
|
+
];
|
|
1720
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1721
|
+
0, () => ValidationExceptionField$
|
|
1722
|
+
];
|
|
1723
|
+
var WeightedTargetGroupList = [1, n0, _WTGL,
|
|
1724
|
+
0, () => WeightedTargetGroup$
|
|
1725
|
+
];
|
|
1726
|
+
var HeaderMatchType$ = [4, n0, _HMT,
|
|
1727
|
+
0,
|
|
1728
|
+
[_ex, _pre, _con],
|
|
1729
|
+
[0, 0, 0]
|
|
1730
|
+
];
|
|
1731
|
+
var Matcher$ = [4, n0, _M,
|
|
1732
|
+
0,
|
|
1733
|
+
[_hCt],
|
|
1734
|
+
[0]
|
|
1735
|
+
];
|
|
1736
|
+
var PathMatchType$ = [4, n0, _PMT,
|
|
1737
|
+
0,
|
|
1738
|
+
[_ex, _pre],
|
|
1739
|
+
[0, 0]
|
|
1740
|
+
];
|
|
1741
|
+
var ResourceConfigurationDefinition$ = [4, n0, _RCD,
|
|
1742
|
+
0,
|
|
1743
|
+
[_dR, _iR, _aR],
|
|
1744
|
+
[() => DnsResource$, () => IpResource$, () => ArnResource$]
|
|
1745
|
+
];
|
|
1746
|
+
var RuleAction$ = [4, n0, _RAu,
|
|
1747
|
+
0,
|
|
1748
|
+
[_f, _fRi],
|
|
1749
|
+
[() => ForwardAction$, () => FixedResponseAction$]
|
|
1750
|
+
];
|
|
1751
|
+
var RuleMatch$ = [4, n0, _RM,
|
|
1752
|
+
0,
|
|
1753
|
+
[_hMt],
|
|
1754
|
+
[() => HttpMatch$]
|
|
1755
|
+
];
|
|
1756
|
+
var BatchUpdateRule$ = [9, n0, _BUR,
|
|
1757
|
+
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 200] }, () => BatchUpdateRuleRequest$, () => BatchUpdateRuleResponse$
|
|
1758
|
+
];
|
|
1759
|
+
var CreateAccessLogSubscription$ = [9, n0, _CALS,
|
|
1760
|
+
{ [_h]: ["POST", "/accesslogsubscriptions", 201] }, () => CreateAccessLogSubscriptionRequest$, () => CreateAccessLogSubscriptionResponse$
|
|
1761
|
+
];
|
|
1762
|
+
var CreateListener$ = [9, n0, _CL,
|
|
1763
|
+
{ [_h]: ["POST", "/services/{serviceIdentifier}/listeners", 201] }, () => CreateListenerRequest$, () => CreateListenerResponse$
|
|
1764
|
+
];
|
|
1765
|
+
var CreateResourceConfiguration$ = [9, n0, _CRC,
|
|
1766
|
+
{ [_h]: ["POST", "/resourceconfigurations", 201] }, () => CreateResourceConfigurationRequest$, () => CreateResourceConfigurationResponse$
|
|
1767
|
+
];
|
|
1768
|
+
var CreateResourceGateway$ = [9, n0, _CRG,
|
|
1769
|
+
{ [_h]: ["POST", "/resourcegateways", 201] }, () => CreateResourceGatewayRequest$, () => CreateResourceGatewayResponse$
|
|
1770
|
+
];
|
|
1771
|
+
var CreateRule$ = [9, n0, _CR,
|
|
1772
|
+
{ [_h]: ["POST", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 201] }, () => CreateRuleRequest$, () => CreateRuleResponse$
|
|
1773
|
+
];
|
|
1774
|
+
var CreateService$ = [9, n0, _CS,
|
|
1775
|
+
{ [_h]: ["POST", "/services", 201] }, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
1776
|
+
];
|
|
1777
|
+
var CreateServiceNetwork$ = [9, n0, _CSN,
|
|
1778
|
+
{ [_h]: ["POST", "/servicenetworks", 201] }, () => CreateServiceNetworkRequest$, () => CreateServiceNetworkResponse$
|
|
1779
|
+
];
|
|
1780
|
+
var CreateServiceNetworkResourceAssociation$ = [9, n0, _CSNRA,
|
|
1781
|
+
{ [_h]: ["POST", "/servicenetworkresourceassociations", 201] }, () => CreateServiceNetworkResourceAssociationRequest$, () => CreateServiceNetworkResourceAssociationResponse$
|
|
1782
|
+
];
|
|
1783
|
+
var CreateServiceNetworkServiceAssociation$ = [9, n0, _CSNSA,
|
|
1784
|
+
{ [_h]: ["POST", "/servicenetworkserviceassociations", 200] }, () => CreateServiceNetworkServiceAssociationRequest$, () => CreateServiceNetworkServiceAssociationResponse$
|
|
1785
|
+
];
|
|
1786
|
+
var CreateServiceNetworkVpcAssociation$ = [9, n0, _CSNVA,
|
|
1787
|
+
{ [_h]: ["POST", "/servicenetworkvpcassociations", 200] }, () => CreateServiceNetworkVpcAssociationRequest$, () => CreateServiceNetworkVpcAssociationResponse$
|
|
1788
|
+
];
|
|
1789
|
+
var CreateTargetGroup$ = [9, n0, _CTG,
|
|
1790
|
+
{ [_h]: ["POST", "/targetgroups", 201] }, () => CreateTargetGroupRequest$, () => CreateTargetGroupResponse$
|
|
1791
|
+
];
|
|
1792
|
+
var DeleteAccessLogSubscription$ = [9, n0, _DALS,
|
|
1793
|
+
{ [_h]: ["DELETE", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 204] }, () => DeleteAccessLogSubscriptionRequest$, () => DeleteAccessLogSubscriptionResponse$
|
|
1794
|
+
];
|
|
1795
|
+
var DeleteAuthPolicy$ = [9, n0, _DAP,
|
|
1796
|
+
{ [_h]: ["DELETE", "/authpolicy/{resourceIdentifier}", 204] }, () => DeleteAuthPolicyRequest$, () => DeleteAuthPolicyResponse$
|
|
1797
|
+
];
|
|
1798
|
+
var DeleteDomainVerification$ = [9, n0, _DDV,
|
|
1799
|
+
{ [_h]: ["DELETE", "/domainverifications/{domainVerificationIdentifier}", 200] }, () => DeleteDomainVerificationRequest$, () => DeleteDomainVerificationResponse$
|
|
1800
|
+
];
|
|
1801
|
+
var DeleteListener$ = [9, n0, _DL,
|
|
1802
|
+
{ [_h]: ["DELETE", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 204] }, () => DeleteListenerRequest$, () => DeleteListenerResponse$
|
|
1803
|
+
];
|
|
1804
|
+
var DeleteResourceConfiguration$ = [9, n0, _DRC,
|
|
1805
|
+
{ [_h]: ["DELETE", "/resourceconfigurations/{resourceConfigurationIdentifier}", 204] }, () => DeleteResourceConfigurationRequest$, () => DeleteResourceConfigurationResponse$
|
|
1806
|
+
];
|
|
1807
|
+
var DeleteResourceEndpointAssociation$ = [9, n0, _DREA,
|
|
1808
|
+
{ [_h]: ["DELETE", "/resourceendpointassociations/{resourceEndpointAssociationIdentifier}", 200] }, () => DeleteResourceEndpointAssociationRequest$, () => DeleteResourceEndpointAssociationResponse$
|
|
1809
|
+
];
|
|
1810
|
+
var DeleteResourceGateway$ = [9, n0, _DRG,
|
|
1811
|
+
{ [_h]: ["DELETE", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => DeleteResourceGatewayRequest$, () => DeleteResourceGatewayResponse$
|
|
1812
|
+
];
|
|
1813
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1814
|
+
{ [_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204] }, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
1815
|
+
];
|
|
1816
|
+
var DeleteRule$ = [9, n0, _DRe,
|
|
1817
|
+
{ [_h]: ["DELETE", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 204] }, () => DeleteRuleRequest$, () => DeleteRuleResponse$
|
|
1818
|
+
];
|
|
1819
|
+
var DeleteService$ = [9, n0, _DS,
|
|
1820
|
+
{ [_h]: ["DELETE", "/services/{serviceIdentifier}", 200] }, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
1821
|
+
];
|
|
1822
|
+
var DeleteServiceNetwork$ = [9, n0, _DSN,
|
|
1823
|
+
{ [_h]: ["DELETE", "/servicenetworks/{serviceNetworkIdentifier}", 204] }, () => DeleteServiceNetworkRequest$, () => DeleteServiceNetworkResponse$
|
|
1824
|
+
];
|
|
1825
|
+
var DeleteServiceNetworkResourceAssociation$ = [9, n0, _DSNRA,
|
|
1826
|
+
{ [_h]: ["DELETE", "/servicenetworkresourceassociations/{serviceNetworkResourceAssociationIdentifier}", 200] }, () => DeleteServiceNetworkResourceAssociationRequest$, () => DeleteServiceNetworkResourceAssociationResponse$
|
|
1827
|
+
];
|
|
1828
|
+
var DeleteServiceNetworkServiceAssociation$ = [9, n0, _DSNSA,
|
|
1829
|
+
{ [_h]: ["DELETE", "/servicenetworkserviceassociations/{serviceNetworkServiceAssociationIdentifier}", 200] }, () => DeleteServiceNetworkServiceAssociationRequest$, () => DeleteServiceNetworkServiceAssociationResponse$
|
|
1830
|
+
];
|
|
1831
|
+
var DeleteServiceNetworkVpcAssociation$ = [9, n0, _DSNVA,
|
|
1832
|
+
{ [_h]: ["DELETE", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => DeleteServiceNetworkVpcAssociationRequest$, () => DeleteServiceNetworkVpcAssociationResponse$
|
|
1833
|
+
];
|
|
1834
|
+
var DeleteTargetGroup$ = [9, n0, _DTG,
|
|
1835
|
+
{ [_h]: ["DELETE", "/targetgroups/{targetGroupIdentifier}", 200] }, () => DeleteTargetGroupRequest$, () => DeleteTargetGroupResponse$
|
|
1836
|
+
];
|
|
1837
|
+
var DeregisterTargets$ = [9, n0, _DT,
|
|
1838
|
+
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/deregistertargets", 200] }, () => DeregisterTargetsRequest$, () => DeregisterTargetsResponse$
|
|
1839
|
+
];
|
|
1840
|
+
var GetAccessLogSubscription$ = [9, n0, _GALS,
|
|
1841
|
+
{ [_h]: ["GET", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 200] }, () => GetAccessLogSubscriptionRequest$, () => GetAccessLogSubscriptionResponse$
|
|
1842
|
+
];
|
|
1843
|
+
var GetAuthPolicy$ = [9, n0, _GAP,
|
|
1844
|
+
{ [_h]: ["GET", "/authpolicy/{resourceIdentifier}", 200] }, () => GetAuthPolicyRequest$, () => GetAuthPolicyResponse$
|
|
1845
|
+
];
|
|
1846
|
+
var GetDomainVerification$ = [9, n0, _GDV,
|
|
1847
|
+
{ [_h]: ["GET", "/domainverifications/{domainVerificationIdentifier}", 200] }, () => GetDomainVerificationRequest$, () => GetDomainVerificationResponse$
|
|
1848
|
+
];
|
|
1849
|
+
var GetListener$ = [9, n0, _GL,
|
|
1850
|
+
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 200] }, () => GetListenerRequest$, () => GetListenerResponse$
|
|
1851
|
+
];
|
|
1852
|
+
var GetResourceConfiguration$ = [9, n0, _GRC,
|
|
1853
|
+
{ [_h]: ["GET", "/resourceconfigurations/{resourceConfigurationIdentifier}", 200] }, () => GetResourceConfigurationRequest$, () => GetResourceConfigurationResponse$
|
|
1854
|
+
];
|
|
1855
|
+
var GetResourceGateway$ = [9, n0, _GRG,
|
|
1856
|
+
{ [_h]: ["GET", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => GetResourceGatewayRequest$, () => GetResourceGatewayResponse$
|
|
1857
|
+
];
|
|
1858
|
+
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
1859
|
+
{ [_h]: ["GET", "/resourcepolicy/{resourceArn}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
1860
|
+
];
|
|
1861
|
+
var GetRule$ = [9, n0, _GR,
|
|
1862
|
+
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 200] }, () => GetRuleRequest$, () => GetRuleResponse$
|
|
1863
|
+
];
|
|
1864
|
+
var GetService$ = [9, n0, _GS,
|
|
1865
|
+
{ [_h]: ["GET", "/services/{serviceIdentifier}", 200] }, () => GetServiceRequest$, () => GetServiceResponse$
|
|
1866
|
+
];
|
|
1867
|
+
var GetServiceNetwork$ = [9, n0, _GSN,
|
|
1868
|
+
{ [_h]: ["GET", "/servicenetworks/{serviceNetworkIdentifier}", 200] }, () => GetServiceNetworkRequest$, () => GetServiceNetworkResponse$
|
|
1869
|
+
];
|
|
1870
|
+
var GetServiceNetworkResourceAssociation$ = [9, n0, _GSNRA,
|
|
1871
|
+
{ [_h]: ["GET", "/servicenetworkresourceassociations/{serviceNetworkResourceAssociationIdentifier}", 200] }, () => GetServiceNetworkResourceAssociationRequest$, () => GetServiceNetworkResourceAssociationResponse$
|
|
1872
|
+
];
|
|
1873
|
+
var GetServiceNetworkServiceAssociation$ = [9, n0, _GSNSA,
|
|
1874
|
+
{ [_h]: ["GET", "/servicenetworkserviceassociations/{serviceNetworkServiceAssociationIdentifier}", 200] }, () => GetServiceNetworkServiceAssociationRequest$, () => GetServiceNetworkServiceAssociationResponse$
|
|
1875
|
+
];
|
|
1876
|
+
var GetServiceNetworkVpcAssociation$ = [9, n0, _GSNVA,
|
|
1877
|
+
{ [_h]: ["GET", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => GetServiceNetworkVpcAssociationRequest$, () => GetServiceNetworkVpcAssociationResponse$
|
|
1878
|
+
];
|
|
1879
|
+
var GetTargetGroup$ = [9, n0, _GTG,
|
|
1880
|
+
{ [_h]: ["GET", "/targetgroups/{targetGroupIdentifier}", 200] }, () => GetTargetGroupRequest$, () => GetTargetGroupResponse$
|
|
1881
|
+
];
|
|
1882
|
+
var ListAccessLogSubscriptions$ = [9, n0, _LALS,
|
|
1883
|
+
{ [_h]: ["GET", "/accesslogsubscriptions", 200] }, () => ListAccessLogSubscriptionsRequest$, () => ListAccessLogSubscriptionsResponse$
|
|
1884
|
+
];
|
|
1885
|
+
var ListDomainVerifications$ = [9, n0, _LDV,
|
|
1886
|
+
{ [_h]: ["GET", "/domainverifications", 200] }, () => ListDomainVerificationsRequest$, () => ListDomainVerificationsResponse$
|
|
1887
|
+
];
|
|
1888
|
+
var ListListeners$ = [9, n0, _LL,
|
|
1889
|
+
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners", 200] }, () => ListListenersRequest$, () => ListListenersResponse$
|
|
1890
|
+
];
|
|
1891
|
+
var ListResourceConfigurations$ = [9, n0, _LRC,
|
|
1892
|
+
{ [_h]: ["GET", "/resourceconfigurations", 200] }, () => ListResourceConfigurationsRequest$, () => ListResourceConfigurationsResponse$
|
|
1893
|
+
];
|
|
1894
|
+
var ListResourceEndpointAssociations$ = [9, n0, _LREA,
|
|
1895
|
+
{ [_h]: ["GET", "/resourceendpointassociations", 200] }, () => ListResourceEndpointAssociationsRequest$, () => ListResourceEndpointAssociationsResponse$
|
|
1896
|
+
];
|
|
1897
|
+
var ListResourceGateways$ = [9, n0, _LRG,
|
|
1898
|
+
{ [_h]: ["GET", "/resourcegateways", 200] }, () => ListResourceGatewaysRequest$, () => ListResourceGatewaysResponse$
|
|
1899
|
+
];
|
|
1900
|
+
var ListRules$ = [9, n0, _LR,
|
|
1901
|
+
{ [_h]: ["GET", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules", 200] }, () => ListRulesRequest$, () => ListRulesResponse$
|
|
1902
|
+
];
|
|
1903
|
+
var ListServiceNetworkResourceAssociations$ = [9, n0, _LSNRA,
|
|
1904
|
+
{ [_h]: ["GET", "/servicenetworkresourceassociations", 200] }, () => ListServiceNetworkResourceAssociationsRequest$, () => ListServiceNetworkResourceAssociationsResponse$
|
|
1905
|
+
];
|
|
1906
|
+
var ListServiceNetworks$ = [9, n0, _LSN,
|
|
1907
|
+
{ [_h]: ["GET", "/servicenetworks", 200] }, () => ListServiceNetworksRequest$, () => ListServiceNetworksResponse$
|
|
1908
|
+
];
|
|
1909
|
+
var ListServiceNetworkServiceAssociations$ = [9, n0, _LSNSA,
|
|
1910
|
+
{ [_h]: ["GET", "/servicenetworkserviceassociations", 200] }, () => ListServiceNetworkServiceAssociationsRequest$, () => ListServiceNetworkServiceAssociationsResponse$
|
|
1911
|
+
];
|
|
1912
|
+
var ListServiceNetworkVpcAssociations$ = [9, n0, _LSNVA,
|
|
1913
|
+
{ [_h]: ["GET", "/servicenetworkvpcassociations", 200] }, () => ListServiceNetworkVpcAssociationsRequest$, () => ListServiceNetworkVpcAssociationsResponse$
|
|
1914
|
+
];
|
|
1915
|
+
var ListServiceNetworkVpcEndpointAssociations$ = [9, n0, _LSNVEA,
|
|
1916
|
+
{ [_h]: ["GET", "/servicenetworkvpcendpointassociations", 200] }, () => ListServiceNetworkVpcEndpointAssociationsRequest$, () => ListServiceNetworkVpcEndpointAssociationsResponse$
|
|
1917
|
+
];
|
|
1918
|
+
var ListServices$ = [9, n0, _LSi,
|
|
1919
|
+
{ [_h]: ["GET", "/services", 200] }, () => ListServicesRequest$, () => ListServicesResponse$
|
|
1920
|
+
];
|
|
1921
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1922
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1923
|
+
];
|
|
1924
|
+
var ListTargetGroups$ = [9, n0, _LTG,
|
|
1925
|
+
{ [_h]: ["GET", "/targetgroups", 200] }, () => ListTargetGroupsRequest$, () => ListTargetGroupsResponse$
|
|
1926
|
+
];
|
|
1927
|
+
var ListTargets$ = [9, n0, _LT,
|
|
1928
|
+
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/listtargets", 200] }, () => ListTargetsRequest$, () => ListTargetsResponse$
|
|
1929
|
+
];
|
|
1930
|
+
var PutAuthPolicy$ = [9, n0, _PAP,
|
|
1931
|
+
{ [_h]: ["PUT", "/authpolicy/{resourceIdentifier}", 200] }, () => PutAuthPolicyRequest$, () => PutAuthPolicyResponse$
|
|
1932
|
+
];
|
|
1933
|
+
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1934
|
+
{ [_h]: ["PUT", "/resourcepolicy/{resourceArn}", 200] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1935
|
+
];
|
|
1936
|
+
var RegisterTargets$ = [9, n0, _RT,
|
|
1937
|
+
{ [_h]: ["POST", "/targetgroups/{targetGroupIdentifier}/registertargets", 200] }, () => RegisterTargetsRequest$, () => RegisterTargetsResponse$
|
|
1938
|
+
];
|
|
1939
|
+
var StartDomainVerification$ = [9, n0, _SDV,
|
|
1940
|
+
{ [_h]: ["POST", "/domainverifications", 201] }, () => StartDomainVerificationRequest$, () => StartDomainVerificationResponse$
|
|
1941
|
+
];
|
|
1942
|
+
var TagResource$ = [9, n0, _TR,
|
|
1943
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1944
|
+
];
|
|
1945
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1946
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1947
|
+
];
|
|
1948
|
+
var UpdateAccessLogSubscription$ = [9, n0, _UALS,
|
|
1949
|
+
{ [_h]: ["PATCH", "/accesslogsubscriptions/{accessLogSubscriptionIdentifier}", 200] }, () => UpdateAccessLogSubscriptionRequest$, () => UpdateAccessLogSubscriptionResponse$
|
|
1950
|
+
];
|
|
1951
|
+
var UpdateListener$ = [9, n0, _UL,
|
|
1952
|
+
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}", 200] }, () => UpdateListenerRequest$, () => UpdateListenerResponse$
|
|
1953
|
+
];
|
|
1954
|
+
var UpdateResourceConfiguration$ = [9, n0, _URC,
|
|
1955
|
+
{ [_h]: ["PATCH", "/resourceconfigurations/{resourceConfigurationIdentifier}", 200] }, () => UpdateResourceConfigurationRequest$, () => UpdateResourceConfigurationResponse$
|
|
1956
|
+
];
|
|
1957
|
+
var UpdateResourceGateway$ = [9, n0, _URG,
|
|
1958
|
+
{ [_h]: ["PATCH", "/resourcegateways/{resourceGatewayIdentifier}", 200] }, () => UpdateResourceGatewayRequest$, () => UpdateResourceGatewayResponse$
|
|
1959
|
+
];
|
|
1960
|
+
var UpdateRule$ = [9, n0, _URp,
|
|
1961
|
+
{ [_h]: ["PATCH", "/services/{serviceIdentifier}/listeners/{listenerIdentifier}/rules/{ruleIdentifier}", 200] }, () => UpdateRuleRequest$, () => UpdateRuleResponse$
|
|
1962
|
+
];
|
|
1963
|
+
var UpdateService$ = [9, n0, _US,
|
|
1964
|
+
{ [_h]: ["PATCH", "/services/{serviceIdentifier}", 200] }, () => UpdateServiceRequest$, () => UpdateServiceResponse$
|
|
1965
|
+
];
|
|
1966
|
+
var UpdateServiceNetwork$ = [9, n0, _USN,
|
|
1967
|
+
{ [_h]: ["PATCH", "/servicenetworks/{serviceNetworkIdentifier}", 200] }, () => UpdateServiceNetworkRequest$, () => UpdateServiceNetworkResponse$
|
|
1968
|
+
];
|
|
1969
|
+
var UpdateServiceNetworkVpcAssociation$ = [9, n0, _USNVA,
|
|
1970
|
+
{ [_h]: ["PATCH", "/servicenetworkvpcassociations/{serviceNetworkVpcAssociationIdentifier}", 200] }, () => UpdateServiceNetworkVpcAssociationRequest$, () => UpdateServiceNetworkVpcAssociationResponse$
|
|
1971
|
+
];
|
|
1972
|
+
var UpdateTargetGroup$ = [9, n0, _UTG,
|
|
1973
|
+
{ [_h]: ["PATCH", "/targetgroups/{targetGroupIdentifier}", 200] }, () => UpdateTargetGroupRequest$, () => UpdateTargetGroupResponse$
|
|
1974
|
+
];
|
|
1975
|
+
|
|
1976
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1977
|
+
return {
|
|
1978
|
+
apiVersion: "2022-11-30",
|
|
1979
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1980
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1981
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1982
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1983
|
+
extensions: config?.extensions ?? [],
|
|
1984
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultVPCLatticeHttpAuthSchemeProvider,
|
|
1985
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1986
|
+
{
|
|
1987
|
+
schemeId: "aws.auth#sigv4",
|
|
1988
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1989
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1990
|
+
},
|
|
1991
|
+
],
|
|
1992
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1993
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1994
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1995
|
+
defaultNamespace: "com.amazonaws.vpclattice",
|
|
1996
|
+
errorTypeRegistries,
|
|
1997
|
+
version: "2022-11-30",
|
|
1998
|
+
serviceTarget: "MercuryControlPlane",
|
|
1999
|
+
},
|
|
2000
|
+
serviceId: config?.serviceId ?? "VPC Lattice",
|
|
2001
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2002
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2003
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2004
|
+
};
|
|
2005
|
+
};
|
|
2006
|
+
|
|
2007
|
+
const getRuntimeConfig = (config) => {
|
|
2008
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2009
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2010
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2011
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2012
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2013
|
+
const loaderConfig = {
|
|
2014
|
+
profile: config?.profile,
|
|
2015
|
+
logger: clientSharedValues.logger,
|
|
2016
|
+
};
|
|
2017
|
+
return {
|
|
2018
|
+
...clientSharedValues,
|
|
2019
|
+
...config,
|
|
2020
|
+
runtime: "node",
|
|
2021
|
+
defaultsMode,
|
|
2022
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2023
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2024
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2025
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2026
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2027
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2028
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2029
|
+
retryMode: config?.retryMode ??
|
|
2030
|
+
loadConfig({
|
|
2031
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2032
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2033
|
+
}, config),
|
|
2034
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2035
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2036
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2037
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2038
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
2041
|
+
|
|
34
2042
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2043
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2044
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1263,107 +3271,385 @@ const TargetStatus = {
|
|
|
1263
3271
|
UNUSED: "UNUSED",
|
|
1264
3272
|
};
|
|
1265
3273
|
|
|
3274
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3275
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3276
|
+
exports.AccessLogSubscriptionSummary$ = AccessLogSubscriptionSummary$;
|
|
3277
|
+
exports.ArnResource$ = ArnResource$;
|
|
1266
3278
|
exports.AuthPolicyState = AuthPolicyState;
|
|
1267
3279
|
exports.AuthType = AuthType;
|
|
3280
|
+
exports.BatchUpdateRule$ = BatchUpdateRule$;
|
|
1268
3281
|
exports.BatchUpdateRuleCommand = BatchUpdateRuleCommand;
|
|
3282
|
+
exports.BatchUpdateRuleRequest$ = BatchUpdateRuleRequest$;
|
|
3283
|
+
exports.BatchUpdateRuleResponse$ = BatchUpdateRuleResponse$;
|
|
3284
|
+
exports.ConflictException = ConflictException;
|
|
3285
|
+
exports.ConflictException$ = ConflictException$;
|
|
3286
|
+
exports.CreateAccessLogSubscription$ = CreateAccessLogSubscription$;
|
|
1269
3287
|
exports.CreateAccessLogSubscriptionCommand = CreateAccessLogSubscriptionCommand;
|
|
3288
|
+
exports.CreateAccessLogSubscriptionRequest$ = CreateAccessLogSubscriptionRequest$;
|
|
3289
|
+
exports.CreateAccessLogSubscriptionResponse$ = CreateAccessLogSubscriptionResponse$;
|
|
3290
|
+
exports.CreateListener$ = CreateListener$;
|
|
1270
3291
|
exports.CreateListenerCommand = CreateListenerCommand;
|
|
3292
|
+
exports.CreateListenerRequest$ = CreateListenerRequest$;
|
|
3293
|
+
exports.CreateListenerResponse$ = CreateListenerResponse$;
|
|
3294
|
+
exports.CreateResourceConfiguration$ = CreateResourceConfiguration$;
|
|
1271
3295
|
exports.CreateResourceConfigurationCommand = CreateResourceConfigurationCommand;
|
|
3296
|
+
exports.CreateResourceConfigurationRequest$ = CreateResourceConfigurationRequest$;
|
|
3297
|
+
exports.CreateResourceConfigurationResponse$ = CreateResourceConfigurationResponse$;
|
|
3298
|
+
exports.CreateResourceGateway$ = CreateResourceGateway$;
|
|
1272
3299
|
exports.CreateResourceGatewayCommand = CreateResourceGatewayCommand;
|
|
3300
|
+
exports.CreateResourceGatewayRequest$ = CreateResourceGatewayRequest$;
|
|
3301
|
+
exports.CreateResourceGatewayResponse$ = CreateResourceGatewayResponse$;
|
|
3302
|
+
exports.CreateRule$ = CreateRule$;
|
|
1273
3303
|
exports.CreateRuleCommand = CreateRuleCommand;
|
|
3304
|
+
exports.CreateRuleRequest$ = CreateRuleRequest$;
|
|
3305
|
+
exports.CreateRuleResponse$ = CreateRuleResponse$;
|
|
3306
|
+
exports.CreateService$ = CreateService$;
|
|
1274
3307
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
3308
|
+
exports.CreateServiceNetwork$ = CreateServiceNetwork$;
|
|
1275
3309
|
exports.CreateServiceNetworkCommand = CreateServiceNetworkCommand;
|
|
3310
|
+
exports.CreateServiceNetworkRequest$ = CreateServiceNetworkRequest$;
|
|
3311
|
+
exports.CreateServiceNetworkResourceAssociation$ = CreateServiceNetworkResourceAssociation$;
|
|
1276
3312
|
exports.CreateServiceNetworkResourceAssociationCommand = CreateServiceNetworkResourceAssociationCommand;
|
|
3313
|
+
exports.CreateServiceNetworkResourceAssociationRequest$ = CreateServiceNetworkResourceAssociationRequest$;
|
|
3314
|
+
exports.CreateServiceNetworkResourceAssociationResponse$ = CreateServiceNetworkResourceAssociationResponse$;
|
|
3315
|
+
exports.CreateServiceNetworkResponse$ = CreateServiceNetworkResponse$;
|
|
3316
|
+
exports.CreateServiceNetworkServiceAssociation$ = CreateServiceNetworkServiceAssociation$;
|
|
1277
3317
|
exports.CreateServiceNetworkServiceAssociationCommand = CreateServiceNetworkServiceAssociationCommand;
|
|
3318
|
+
exports.CreateServiceNetworkServiceAssociationRequest$ = CreateServiceNetworkServiceAssociationRequest$;
|
|
3319
|
+
exports.CreateServiceNetworkServiceAssociationResponse$ = CreateServiceNetworkServiceAssociationResponse$;
|
|
3320
|
+
exports.CreateServiceNetworkVpcAssociation$ = CreateServiceNetworkVpcAssociation$;
|
|
1278
3321
|
exports.CreateServiceNetworkVpcAssociationCommand = CreateServiceNetworkVpcAssociationCommand;
|
|
3322
|
+
exports.CreateServiceNetworkVpcAssociationRequest$ = CreateServiceNetworkVpcAssociationRequest$;
|
|
3323
|
+
exports.CreateServiceNetworkVpcAssociationResponse$ = CreateServiceNetworkVpcAssociationResponse$;
|
|
3324
|
+
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
3325
|
+
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
3326
|
+
exports.CreateTargetGroup$ = CreateTargetGroup$;
|
|
1279
3327
|
exports.CreateTargetGroupCommand = CreateTargetGroupCommand;
|
|
3328
|
+
exports.CreateTargetGroupRequest$ = CreateTargetGroupRequest$;
|
|
3329
|
+
exports.CreateTargetGroupResponse$ = CreateTargetGroupResponse$;
|
|
3330
|
+
exports.DeleteAccessLogSubscription$ = DeleteAccessLogSubscription$;
|
|
1280
3331
|
exports.DeleteAccessLogSubscriptionCommand = DeleteAccessLogSubscriptionCommand;
|
|
3332
|
+
exports.DeleteAccessLogSubscriptionRequest$ = DeleteAccessLogSubscriptionRequest$;
|
|
3333
|
+
exports.DeleteAccessLogSubscriptionResponse$ = DeleteAccessLogSubscriptionResponse$;
|
|
3334
|
+
exports.DeleteAuthPolicy$ = DeleteAuthPolicy$;
|
|
1281
3335
|
exports.DeleteAuthPolicyCommand = DeleteAuthPolicyCommand;
|
|
3336
|
+
exports.DeleteAuthPolicyRequest$ = DeleteAuthPolicyRequest$;
|
|
3337
|
+
exports.DeleteAuthPolicyResponse$ = DeleteAuthPolicyResponse$;
|
|
3338
|
+
exports.DeleteDomainVerification$ = DeleteDomainVerification$;
|
|
1282
3339
|
exports.DeleteDomainVerificationCommand = DeleteDomainVerificationCommand;
|
|
3340
|
+
exports.DeleteDomainVerificationRequest$ = DeleteDomainVerificationRequest$;
|
|
3341
|
+
exports.DeleteDomainVerificationResponse$ = DeleteDomainVerificationResponse$;
|
|
3342
|
+
exports.DeleteListener$ = DeleteListener$;
|
|
1283
3343
|
exports.DeleteListenerCommand = DeleteListenerCommand;
|
|
3344
|
+
exports.DeleteListenerRequest$ = DeleteListenerRequest$;
|
|
3345
|
+
exports.DeleteListenerResponse$ = DeleteListenerResponse$;
|
|
3346
|
+
exports.DeleteResourceConfiguration$ = DeleteResourceConfiguration$;
|
|
1284
3347
|
exports.DeleteResourceConfigurationCommand = DeleteResourceConfigurationCommand;
|
|
3348
|
+
exports.DeleteResourceConfigurationRequest$ = DeleteResourceConfigurationRequest$;
|
|
3349
|
+
exports.DeleteResourceConfigurationResponse$ = DeleteResourceConfigurationResponse$;
|
|
3350
|
+
exports.DeleteResourceEndpointAssociation$ = DeleteResourceEndpointAssociation$;
|
|
1285
3351
|
exports.DeleteResourceEndpointAssociationCommand = DeleteResourceEndpointAssociationCommand;
|
|
3352
|
+
exports.DeleteResourceEndpointAssociationRequest$ = DeleteResourceEndpointAssociationRequest$;
|
|
3353
|
+
exports.DeleteResourceEndpointAssociationResponse$ = DeleteResourceEndpointAssociationResponse$;
|
|
3354
|
+
exports.DeleteResourceGateway$ = DeleteResourceGateway$;
|
|
1286
3355
|
exports.DeleteResourceGatewayCommand = DeleteResourceGatewayCommand;
|
|
3356
|
+
exports.DeleteResourceGatewayRequest$ = DeleteResourceGatewayRequest$;
|
|
3357
|
+
exports.DeleteResourceGatewayResponse$ = DeleteResourceGatewayResponse$;
|
|
3358
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1287
3359
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
3360
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
3361
|
+
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
3362
|
+
exports.DeleteRule$ = DeleteRule$;
|
|
1288
3363
|
exports.DeleteRuleCommand = DeleteRuleCommand;
|
|
3364
|
+
exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
3365
|
+
exports.DeleteRuleResponse$ = DeleteRuleResponse$;
|
|
3366
|
+
exports.DeleteService$ = DeleteService$;
|
|
1289
3367
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
3368
|
+
exports.DeleteServiceNetwork$ = DeleteServiceNetwork$;
|
|
1290
3369
|
exports.DeleteServiceNetworkCommand = DeleteServiceNetworkCommand;
|
|
3370
|
+
exports.DeleteServiceNetworkRequest$ = DeleteServiceNetworkRequest$;
|
|
3371
|
+
exports.DeleteServiceNetworkResourceAssociation$ = DeleteServiceNetworkResourceAssociation$;
|
|
1291
3372
|
exports.DeleteServiceNetworkResourceAssociationCommand = DeleteServiceNetworkResourceAssociationCommand;
|
|
3373
|
+
exports.DeleteServiceNetworkResourceAssociationRequest$ = DeleteServiceNetworkResourceAssociationRequest$;
|
|
3374
|
+
exports.DeleteServiceNetworkResourceAssociationResponse$ = DeleteServiceNetworkResourceAssociationResponse$;
|
|
3375
|
+
exports.DeleteServiceNetworkResponse$ = DeleteServiceNetworkResponse$;
|
|
3376
|
+
exports.DeleteServiceNetworkServiceAssociation$ = DeleteServiceNetworkServiceAssociation$;
|
|
1292
3377
|
exports.DeleteServiceNetworkServiceAssociationCommand = DeleteServiceNetworkServiceAssociationCommand;
|
|
3378
|
+
exports.DeleteServiceNetworkServiceAssociationRequest$ = DeleteServiceNetworkServiceAssociationRequest$;
|
|
3379
|
+
exports.DeleteServiceNetworkServiceAssociationResponse$ = DeleteServiceNetworkServiceAssociationResponse$;
|
|
3380
|
+
exports.DeleteServiceNetworkVpcAssociation$ = DeleteServiceNetworkVpcAssociation$;
|
|
1293
3381
|
exports.DeleteServiceNetworkVpcAssociationCommand = DeleteServiceNetworkVpcAssociationCommand;
|
|
3382
|
+
exports.DeleteServiceNetworkVpcAssociationRequest$ = DeleteServiceNetworkVpcAssociationRequest$;
|
|
3383
|
+
exports.DeleteServiceNetworkVpcAssociationResponse$ = DeleteServiceNetworkVpcAssociationResponse$;
|
|
3384
|
+
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
3385
|
+
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
3386
|
+
exports.DeleteTargetGroup$ = DeleteTargetGroup$;
|
|
1294
3387
|
exports.DeleteTargetGroupCommand = DeleteTargetGroupCommand;
|
|
3388
|
+
exports.DeleteTargetGroupRequest$ = DeleteTargetGroupRequest$;
|
|
3389
|
+
exports.DeleteTargetGroupResponse$ = DeleteTargetGroupResponse$;
|
|
3390
|
+
exports.DeregisterTargets$ = DeregisterTargets$;
|
|
1295
3391
|
exports.DeregisterTargetsCommand = DeregisterTargetsCommand;
|
|
3392
|
+
exports.DeregisterTargetsRequest$ = DeregisterTargetsRequest$;
|
|
3393
|
+
exports.DeregisterTargetsResponse$ = DeregisterTargetsResponse$;
|
|
3394
|
+
exports.DnsEntry$ = DnsEntry$;
|
|
3395
|
+
exports.DnsOptions$ = DnsOptions$;
|
|
3396
|
+
exports.DnsResource$ = DnsResource$;
|
|
3397
|
+
exports.DomainVerificationSummary$ = DomainVerificationSummary$;
|
|
3398
|
+
exports.FixedResponseAction$ = FixedResponseAction$;
|
|
3399
|
+
exports.ForwardAction$ = ForwardAction$;
|
|
3400
|
+
exports.GetAccessLogSubscription$ = GetAccessLogSubscription$;
|
|
1296
3401
|
exports.GetAccessLogSubscriptionCommand = GetAccessLogSubscriptionCommand;
|
|
3402
|
+
exports.GetAccessLogSubscriptionRequest$ = GetAccessLogSubscriptionRequest$;
|
|
3403
|
+
exports.GetAccessLogSubscriptionResponse$ = GetAccessLogSubscriptionResponse$;
|
|
3404
|
+
exports.GetAuthPolicy$ = GetAuthPolicy$;
|
|
1297
3405
|
exports.GetAuthPolicyCommand = GetAuthPolicyCommand;
|
|
3406
|
+
exports.GetAuthPolicyRequest$ = GetAuthPolicyRequest$;
|
|
3407
|
+
exports.GetAuthPolicyResponse$ = GetAuthPolicyResponse$;
|
|
3408
|
+
exports.GetDomainVerification$ = GetDomainVerification$;
|
|
1298
3409
|
exports.GetDomainVerificationCommand = GetDomainVerificationCommand;
|
|
3410
|
+
exports.GetDomainVerificationRequest$ = GetDomainVerificationRequest$;
|
|
3411
|
+
exports.GetDomainVerificationResponse$ = GetDomainVerificationResponse$;
|
|
3412
|
+
exports.GetListener$ = GetListener$;
|
|
1299
3413
|
exports.GetListenerCommand = GetListenerCommand;
|
|
3414
|
+
exports.GetListenerRequest$ = GetListenerRequest$;
|
|
3415
|
+
exports.GetListenerResponse$ = GetListenerResponse$;
|
|
3416
|
+
exports.GetResourceConfiguration$ = GetResourceConfiguration$;
|
|
1300
3417
|
exports.GetResourceConfigurationCommand = GetResourceConfigurationCommand;
|
|
3418
|
+
exports.GetResourceConfigurationRequest$ = GetResourceConfigurationRequest$;
|
|
3419
|
+
exports.GetResourceConfigurationResponse$ = GetResourceConfigurationResponse$;
|
|
3420
|
+
exports.GetResourceGateway$ = GetResourceGateway$;
|
|
1301
3421
|
exports.GetResourceGatewayCommand = GetResourceGatewayCommand;
|
|
3422
|
+
exports.GetResourceGatewayRequest$ = GetResourceGatewayRequest$;
|
|
3423
|
+
exports.GetResourceGatewayResponse$ = GetResourceGatewayResponse$;
|
|
3424
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1302
3425
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
3426
|
+
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
3427
|
+
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
3428
|
+
exports.GetRule$ = GetRule$;
|
|
1303
3429
|
exports.GetRuleCommand = GetRuleCommand;
|
|
3430
|
+
exports.GetRuleRequest$ = GetRuleRequest$;
|
|
3431
|
+
exports.GetRuleResponse$ = GetRuleResponse$;
|
|
3432
|
+
exports.GetService$ = GetService$;
|
|
1304
3433
|
exports.GetServiceCommand = GetServiceCommand;
|
|
3434
|
+
exports.GetServiceNetwork$ = GetServiceNetwork$;
|
|
1305
3435
|
exports.GetServiceNetworkCommand = GetServiceNetworkCommand;
|
|
3436
|
+
exports.GetServiceNetworkRequest$ = GetServiceNetworkRequest$;
|
|
3437
|
+
exports.GetServiceNetworkResourceAssociation$ = GetServiceNetworkResourceAssociation$;
|
|
1306
3438
|
exports.GetServiceNetworkResourceAssociationCommand = GetServiceNetworkResourceAssociationCommand;
|
|
3439
|
+
exports.GetServiceNetworkResourceAssociationRequest$ = GetServiceNetworkResourceAssociationRequest$;
|
|
3440
|
+
exports.GetServiceNetworkResourceAssociationResponse$ = GetServiceNetworkResourceAssociationResponse$;
|
|
3441
|
+
exports.GetServiceNetworkResponse$ = GetServiceNetworkResponse$;
|
|
3442
|
+
exports.GetServiceNetworkServiceAssociation$ = GetServiceNetworkServiceAssociation$;
|
|
1307
3443
|
exports.GetServiceNetworkServiceAssociationCommand = GetServiceNetworkServiceAssociationCommand;
|
|
3444
|
+
exports.GetServiceNetworkServiceAssociationRequest$ = GetServiceNetworkServiceAssociationRequest$;
|
|
3445
|
+
exports.GetServiceNetworkServiceAssociationResponse$ = GetServiceNetworkServiceAssociationResponse$;
|
|
3446
|
+
exports.GetServiceNetworkVpcAssociation$ = GetServiceNetworkVpcAssociation$;
|
|
1308
3447
|
exports.GetServiceNetworkVpcAssociationCommand = GetServiceNetworkVpcAssociationCommand;
|
|
3448
|
+
exports.GetServiceNetworkVpcAssociationRequest$ = GetServiceNetworkVpcAssociationRequest$;
|
|
3449
|
+
exports.GetServiceNetworkVpcAssociationResponse$ = GetServiceNetworkVpcAssociationResponse$;
|
|
3450
|
+
exports.GetServiceRequest$ = GetServiceRequest$;
|
|
3451
|
+
exports.GetServiceResponse$ = GetServiceResponse$;
|
|
3452
|
+
exports.GetTargetGroup$ = GetTargetGroup$;
|
|
1309
3453
|
exports.GetTargetGroupCommand = GetTargetGroupCommand;
|
|
3454
|
+
exports.GetTargetGroupRequest$ = GetTargetGroupRequest$;
|
|
3455
|
+
exports.GetTargetGroupResponse$ = GetTargetGroupResponse$;
|
|
3456
|
+
exports.HeaderMatch$ = HeaderMatch$;
|
|
3457
|
+
exports.HeaderMatchType$ = HeaderMatchType$;
|
|
3458
|
+
exports.HealthCheckConfig$ = HealthCheckConfig$;
|
|
1310
3459
|
exports.HealthCheckProtocolVersion = HealthCheckProtocolVersion;
|
|
3460
|
+
exports.HttpMatch$ = HttpMatch$;
|
|
3461
|
+
exports.InternalServerException = InternalServerException;
|
|
3462
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1311
3463
|
exports.IpAddressType = IpAddressType;
|
|
3464
|
+
exports.IpResource$ = IpResource$;
|
|
1312
3465
|
exports.LambdaEventStructureVersion = LambdaEventStructureVersion;
|
|
3466
|
+
exports.ListAccessLogSubscriptions$ = ListAccessLogSubscriptions$;
|
|
1313
3467
|
exports.ListAccessLogSubscriptionsCommand = ListAccessLogSubscriptionsCommand;
|
|
3468
|
+
exports.ListAccessLogSubscriptionsRequest$ = ListAccessLogSubscriptionsRequest$;
|
|
3469
|
+
exports.ListAccessLogSubscriptionsResponse$ = ListAccessLogSubscriptionsResponse$;
|
|
3470
|
+
exports.ListDomainVerifications$ = ListDomainVerifications$;
|
|
1314
3471
|
exports.ListDomainVerificationsCommand = ListDomainVerificationsCommand;
|
|
3472
|
+
exports.ListDomainVerificationsRequest$ = ListDomainVerificationsRequest$;
|
|
3473
|
+
exports.ListDomainVerificationsResponse$ = ListDomainVerificationsResponse$;
|
|
3474
|
+
exports.ListListeners$ = ListListeners$;
|
|
1315
3475
|
exports.ListListenersCommand = ListListenersCommand;
|
|
3476
|
+
exports.ListListenersRequest$ = ListListenersRequest$;
|
|
3477
|
+
exports.ListListenersResponse$ = ListListenersResponse$;
|
|
3478
|
+
exports.ListResourceConfigurations$ = ListResourceConfigurations$;
|
|
1316
3479
|
exports.ListResourceConfigurationsCommand = ListResourceConfigurationsCommand;
|
|
3480
|
+
exports.ListResourceConfigurationsRequest$ = ListResourceConfigurationsRequest$;
|
|
3481
|
+
exports.ListResourceConfigurationsResponse$ = ListResourceConfigurationsResponse$;
|
|
3482
|
+
exports.ListResourceEndpointAssociations$ = ListResourceEndpointAssociations$;
|
|
1317
3483
|
exports.ListResourceEndpointAssociationsCommand = ListResourceEndpointAssociationsCommand;
|
|
3484
|
+
exports.ListResourceEndpointAssociationsRequest$ = ListResourceEndpointAssociationsRequest$;
|
|
3485
|
+
exports.ListResourceEndpointAssociationsResponse$ = ListResourceEndpointAssociationsResponse$;
|
|
3486
|
+
exports.ListResourceGateways$ = ListResourceGateways$;
|
|
1318
3487
|
exports.ListResourceGatewaysCommand = ListResourceGatewaysCommand;
|
|
3488
|
+
exports.ListResourceGatewaysRequest$ = ListResourceGatewaysRequest$;
|
|
3489
|
+
exports.ListResourceGatewaysResponse$ = ListResourceGatewaysResponse$;
|
|
3490
|
+
exports.ListRules$ = ListRules$;
|
|
1319
3491
|
exports.ListRulesCommand = ListRulesCommand;
|
|
3492
|
+
exports.ListRulesRequest$ = ListRulesRequest$;
|
|
3493
|
+
exports.ListRulesResponse$ = ListRulesResponse$;
|
|
3494
|
+
exports.ListServiceNetworkResourceAssociations$ = ListServiceNetworkResourceAssociations$;
|
|
1320
3495
|
exports.ListServiceNetworkResourceAssociationsCommand = ListServiceNetworkResourceAssociationsCommand;
|
|
3496
|
+
exports.ListServiceNetworkResourceAssociationsRequest$ = ListServiceNetworkResourceAssociationsRequest$;
|
|
3497
|
+
exports.ListServiceNetworkResourceAssociationsResponse$ = ListServiceNetworkResourceAssociationsResponse$;
|
|
3498
|
+
exports.ListServiceNetworkServiceAssociations$ = ListServiceNetworkServiceAssociations$;
|
|
1321
3499
|
exports.ListServiceNetworkServiceAssociationsCommand = ListServiceNetworkServiceAssociationsCommand;
|
|
3500
|
+
exports.ListServiceNetworkServiceAssociationsRequest$ = ListServiceNetworkServiceAssociationsRequest$;
|
|
3501
|
+
exports.ListServiceNetworkServiceAssociationsResponse$ = ListServiceNetworkServiceAssociationsResponse$;
|
|
3502
|
+
exports.ListServiceNetworkVpcAssociations$ = ListServiceNetworkVpcAssociations$;
|
|
1322
3503
|
exports.ListServiceNetworkVpcAssociationsCommand = ListServiceNetworkVpcAssociationsCommand;
|
|
3504
|
+
exports.ListServiceNetworkVpcAssociationsRequest$ = ListServiceNetworkVpcAssociationsRequest$;
|
|
3505
|
+
exports.ListServiceNetworkVpcAssociationsResponse$ = ListServiceNetworkVpcAssociationsResponse$;
|
|
3506
|
+
exports.ListServiceNetworkVpcEndpointAssociations$ = ListServiceNetworkVpcEndpointAssociations$;
|
|
1323
3507
|
exports.ListServiceNetworkVpcEndpointAssociationsCommand = ListServiceNetworkVpcEndpointAssociationsCommand;
|
|
3508
|
+
exports.ListServiceNetworkVpcEndpointAssociationsRequest$ = ListServiceNetworkVpcEndpointAssociationsRequest$;
|
|
3509
|
+
exports.ListServiceNetworkVpcEndpointAssociationsResponse$ = ListServiceNetworkVpcEndpointAssociationsResponse$;
|
|
3510
|
+
exports.ListServiceNetworks$ = ListServiceNetworks$;
|
|
1324
3511
|
exports.ListServiceNetworksCommand = ListServiceNetworksCommand;
|
|
3512
|
+
exports.ListServiceNetworksRequest$ = ListServiceNetworksRequest$;
|
|
3513
|
+
exports.ListServiceNetworksResponse$ = ListServiceNetworksResponse$;
|
|
3514
|
+
exports.ListServices$ = ListServices$;
|
|
1325
3515
|
exports.ListServicesCommand = ListServicesCommand;
|
|
3516
|
+
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
3517
|
+
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
3518
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1326
3519
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3520
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3521
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3522
|
+
exports.ListTargetGroups$ = ListTargetGroups$;
|
|
1327
3523
|
exports.ListTargetGroupsCommand = ListTargetGroupsCommand;
|
|
3524
|
+
exports.ListTargetGroupsRequest$ = ListTargetGroupsRequest$;
|
|
3525
|
+
exports.ListTargetGroupsResponse$ = ListTargetGroupsResponse$;
|
|
3526
|
+
exports.ListTargets$ = ListTargets$;
|
|
1328
3527
|
exports.ListTargetsCommand = ListTargetsCommand;
|
|
3528
|
+
exports.ListTargetsRequest$ = ListTargetsRequest$;
|
|
3529
|
+
exports.ListTargetsResponse$ = ListTargetsResponse$;
|
|
1329
3530
|
exports.ListenerProtocol = ListenerProtocol;
|
|
3531
|
+
exports.ListenerSummary$ = ListenerSummary$;
|
|
3532
|
+
exports.Matcher$ = Matcher$;
|
|
3533
|
+
exports.PathMatch$ = PathMatch$;
|
|
3534
|
+
exports.PathMatchType$ = PathMatchType$;
|
|
1330
3535
|
exports.PrivateDnsPreference = PrivateDnsPreference;
|
|
1331
3536
|
exports.ProtocolType = ProtocolType;
|
|
3537
|
+
exports.PutAuthPolicy$ = PutAuthPolicy$;
|
|
1332
3538
|
exports.PutAuthPolicyCommand = PutAuthPolicyCommand;
|
|
3539
|
+
exports.PutAuthPolicyRequest$ = PutAuthPolicyRequest$;
|
|
3540
|
+
exports.PutAuthPolicyResponse$ = PutAuthPolicyResponse$;
|
|
3541
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1333
3542
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3543
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
3544
|
+
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
3545
|
+
exports.RegisterTargets$ = RegisterTargets$;
|
|
1334
3546
|
exports.RegisterTargetsCommand = RegisterTargetsCommand;
|
|
3547
|
+
exports.RegisterTargetsRequest$ = RegisterTargetsRequest$;
|
|
3548
|
+
exports.RegisterTargetsResponse$ = RegisterTargetsResponse$;
|
|
1335
3549
|
exports.ResourceConfigDnsResolution = ResourceConfigDnsResolution;
|
|
3550
|
+
exports.ResourceConfigurationDefinition$ = ResourceConfigurationDefinition$;
|
|
1336
3551
|
exports.ResourceConfigurationIpAddressType = ResourceConfigurationIpAddressType;
|
|
1337
3552
|
exports.ResourceConfigurationStatus = ResourceConfigurationStatus;
|
|
3553
|
+
exports.ResourceConfigurationSummary$ = ResourceConfigurationSummary$;
|
|
1338
3554
|
exports.ResourceConfigurationType = ResourceConfigurationType;
|
|
3555
|
+
exports.ResourceEndpointAssociationSummary$ = ResourceEndpointAssociationSummary$;
|
|
1339
3556
|
exports.ResourceGatewayIpAddressType = ResourceGatewayIpAddressType;
|
|
1340
3557
|
exports.ResourceGatewayStatus = ResourceGatewayStatus;
|
|
3558
|
+
exports.ResourceGatewaySummary$ = ResourceGatewaySummary$;
|
|
3559
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3560
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3561
|
+
exports.RuleAction$ = RuleAction$;
|
|
3562
|
+
exports.RuleMatch$ = RuleMatch$;
|
|
3563
|
+
exports.RuleSummary$ = RuleSummary$;
|
|
3564
|
+
exports.RuleUpdate$ = RuleUpdate$;
|
|
3565
|
+
exports.RuleUpdateFailure$ = RuleUpdateFailure$;
|
|
3566
|
+
exports.RuleUpdateSuccess$ = RuleUpdateSuccess$;
|
|
3567
|
+
exports.ServiceNetworkEndpointAssociation$ = ServiceNetworkEndpointAssociation$;
|
|
1341
3568
|
exports.ServiceNetworkLogType = ServiceNetworkLogType;
|
|
1342
3569
|
exports.ServiceNetworkResourceAssociationStatus = ServiceNetworkResourceAssociationStatus;
|
|
3570
|
+
exports.ServiceNetworkResourceAssociationSummary$ = ServiceNetworkResourceAssociationSummary$;
|
|
1343
3571
|
exports.ServiceNetworkServiceAssociationStatus = ServiceNetworkServiceAssociationStatus;
|
|
3572
|
+
exports.ServiceNetworkServiceAssociationSummary$ = ServiceNetworkServiceAssociationSummary$;
|
|
3573
|
+
exports.ServiceNetworkSummary$ = ServiceNetworkSummary$;
|
|
1344
3574
|
exports.ServiceNetworkVpcAssociationStatus = ServiceNetworkVpcAssociationStatus;
|
|
3575
|
+
exports.ServiceNetworkVpcAssociationSummary$ = ServiceNetworkVpcAssociationSummary$;
|
|
3576
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3577
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1345
3578
|
exports.ServiceStatus = ServiceStatus;
|
|
3579
|
+
exports.ServiceSummary$ = ServiceSummary$;
|
|
3580
|
+
exports.SharingConfig$ = SharingConfig$;
|
|
3581
|
+
exports.StartDomainVerification$ = StartDomainVerification$;
|
|
1346
3582
|
exports.StartDomainVerificationCommand = StartDomainVerificationCommand;
|
|
3583
|
+
exports.StartDomainVerificationRequest$ = StartDomainVerificationRequest$;
|
|
3584
|
+
exports.StartDomainVerificationResponse$ = StartDomainVerificationResponse$;
|
|
3585
|
+
exports.TagResource$ = TagResource$;
|
|
1347
3586
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3587
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3588
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3589
|
+
exports.Target$ = Target$;
|
|
3590
|
+
exports.TargetFailure$ = TargetFailure$;
|
|
3591
|
+
exports.TargetGroupConfig$ = TargetGroupConfig$;
|
|
1348
3592
|
exports.TargetGroupProtocol = TargetGroupProtocol;
|
|
1349
3593
|
exports.TargetGroupProtocolVersion = TargetGroupProtocolVersion;
|
|
1350
3594
|
exports.TargetGroupStatus = TargetGroupStatus;
|
|
3595
|
+
exports.TargetGroupSummary$ = TargetGroupSummary$;
|
|
1351
3596
|
exports.TargetGroupType = TargetGroupType;
|
|
1352
3597
|
exports.TargetStatus = TargetStatus;
|
|
3598
|
+
exports.TargetSummary$ = TargetSummary$;
|
|
3599
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3600
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3601
|
+
exports.TxtMethodConfig$ = TxtMethodConfig$;
|
|
3602
|
+
exports.UntagResource$ = UntagResource$;
|
|
1353
3603
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3604
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3605
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3606
|
+
exports.UpdateAccessLogSubscription$ = UpdateAccessLogSubscription$;
|
|
1354
3607
|
exports.UpdateAccessLogSubscriptionCommand = UpdateAccessLogSubscriptionCommand;
|
|
3608
|
+
exports.UpdateAccessLogSubscriptionRequest$ = UpdateAccessLogSubscriptionRequest$;
|
|
3609
|
+
exports.UpdateAccessLogSubscriptionResponse$ = UpdateAccessLogSubscriptionResponse$;
|
|
3610
|
+
exports.UpdateListener$ = UpdateListener$;
|
|
1355
3611
|
exports.UpdateListenerCommand = UpdateListenerCommand;
|
|
3612
|
+
exports.UpdateListenerRequest$ = UpdateListenerRequest$;
|
|
3613
|
+
exports.UpdateListenerResponse$ = UpdateListenerResponse$;
|
|
3614
|
+
exports.UpdateResourceConfiguration$ = UpdateResourceConfiguration$;
|
|
1356
3615
|
exports.UpdateResourceConfigurationCommand = UpdateResourceConfigurationCommand;
|
|
3616
|
+
exports.UpdateResourceConfigurationRequest$ = UpdateResourceConfigurationRequest$;
|
|
3617
|
+
exports.UpdateResourceConfigurationResponse$ = UpdateResourceConfigurationResponse$;
|
|
3618
|
+
exports.UpdateResourceGateway$ = UpdateResourceGateway$;
|
|
1357
3619
|
exports.UpdateResourceGatewayCommand = UpdateResourceGatewayCommand;
|
|
3620
|
+
exports.UpdateResourceGatewayRequest$ = UpdateResourceGatewayRequest$;
|
|
3621
|
+
exports.UpdateResourceGatewayResponse$ = UpdateResourceGatewayResponse$;
|
|
3622
|
+
exports.UpdateRule$ = UpdateRule$;
|
|
1358
3623
|
exports.UpdateRuleCommand = UpdateRuleCommand;
|
|
3624
|
+
exports.UpdateRuleRequest$ = UpdateRuleRequest$;
|
|
3625
|
+
exports.UpdateRuleResponse$ = UpdateRuleResponse$;
|
|
3626
|
+
exports.UpdateService$ = UpdateService$;
|
|
1359
3627
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
3628
|
+
exports.UpdateServiceNetwork$ = UpdateServiceNetwork$;
|
|
1360
3629
|
exports.UpdateServiceNetworkCommand = UpdateServiceNetworkCommand;
|
|
3630
|
+
exports.UpdateServiceNetworkRequest$ = UpdateServiceNetworkRequest$;
|
|
3631
|
+
exports.UpdateServiceNetworkResponse$ = UpdateServiceNetworkResponse$;
|
|
3632
|
+
exports.UpdateServiceNetworkVpcAssociation$ = UpdateServiceNetworkVpcAssociation$;
|
|
1361
3633
|
exports.UpdateServiceNetworkVpcAssociationCommand = UpdateServiceNetworkVpcAssociationCommand;
|
|
3634
|
+
exports.UpdateServiceNetworkVpcAssociationRequest$ = UpdateServiceNetworkVpcAssociationRequest$;
|
|
3635
|
+
exports.UpdateServiceNetworkVpcAssociationResponse$ = UpdateServiceNetworkVpcAssociationResponse$;
|
|
3636
|
+
exports.UpdateServiceRequest$ = UpdateServiceRequest$;
|
|
3637
|
+
exports.UpdateServiceResponse$ = UpdateServiceResponse$;
|
|
3638
|
+
exports.UpdateTargetGroup$ = UpdateTargetGroup$;
|
|
1362
3639
|
exports.UpdateTargetGroupCommand = UpdateTargetGroupCommand;
|
|
3640
|
+
exports.UpdateTargetGroupRequest$ = UpdateTargetGroupRequest$;
|
|
3641
|
+
exports.UpdateTargetGroupResponse$ = UpdateTargetGroupResponse$;
|
|
1363
3642
|
exports.VPCLattice = VPCLattice;
|
|
1364
3643
|
exports.VPCLatticeClient = VPCLatticeClient;
|
|
3644
|
+
exports.VPCLatticeServiceException = VPCLatticeServiceException;
|
|
3645
|
+
exports.VPCLatticeServiceException$ = VPCLatticeServiceException$;
|
|
3646
|
+
exports.ValidationException = ValidationException;
|
|
3647
|
+
exports.ValidationException$ = ValidationException$;
|
|
3648
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1365
3649
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1366
3650
|
exports.VerificationStatus = VerificationStatus;
|
|
3651
|
+
exports.WeightedTargetGroup$ = WeightedTargetGroup$;
|
|
3652
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1367
3653
|
exports.paginateListAccessLogSubscriptions = paginateListAccessLogSubscriptions;
|
|
1368
3654
|
exports.paginateListDomainVerifications = paginateListDomainVerifications;
|
|
1369
3655
|
exports.paginateListListeners = paginateListListeners;
|