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